trustgraph/ts/packages/client/package.json

36 lines
779 B
JSON
Raw Normal View History

2026-04-05 22:44:45 -05:00
{
"name": "@trustgraph/client",
"version": "0.1.0",
"description": "Vendored TrustGraph WebSocket client (forked from trustgraph-client v1.6.0)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
2026-05-12 08:06:58 -05:00
"build": "bunx --bun tsc",
2026-04-05 22:44:45 -05:00
"dev": "tsc --watch",
"clean": "rm -rf dist",
2026-05-12 08:06:58 -05:00
"test": "bunx --bun vitest run"
},
"dependencies": {
2026-06-06 10:33:10 -05:00
"effect": "4.0.0-beta.78"
2026-04-05 22:44:45 -05:00
},
"peerDependencies": {
"ws": "^8.0.0"
},
"peerDependenciesMeta": {
"ws": {
"optional": true
}
},
"devDependencies": {
2026-06-06 10:33:10 -05:00
"@effect/vitest": "4.0.0-beta.78",
2026-04-05 22:44:45 -05:00
"@types/node": "^22.0.0",
"@types/ws": "^8.5.0",
2026-06-01 16:22:25 -05:00
2026-04-05 22:44:45 -05:00
"typescript": "^5.8.0",
2026-05-12 08:06:58 -05:00
"vitest": "^4.1.6",
2026-04-05 22:44:45 -05:00
"happy-dom": "^20.0.0"
},
"license": "Apache-2.0"
}