trustgraph/ts/packages/cli/package.json

28 lines
639 B
JSON
Raw Normal View History

2026-04-05 21:09:33 -05:00
{
"name": "@trustgraph/cli",
"version": "0.1.0",
"type": "module",
"bin": {
"tg": "dist/index.js"
},
"scripts": {
2026-05-12 08:06:58 -05:00
"build": "bunx --bun tsc",
2026-04-05 21:09:33 -05:00
"dev": "tsc --watch",
"clean": "rm -rf dist",
2026-06-04 05:56:53 -05:00
"test": "bunx --bun vitest run --passWithNoTests --exclude=dist/**"
2026-04-05 21:09:33 -05:00
},
"dependencies": {
2026-06-06 10:33:10 -05:00
"@effect/platform-bun": "4.0.0-beta.78",
2026-04-05 21:09:33 -05:00
"@trustgraph/base": "workspace:*",
2026-04-05 22:44:45 -05:00
"@trustgraph/client": "workspace:*",
"effect": "4.0.0-beta.78",
2026-04-05 21:09:33 -05:00
"ws": "^8.18.0"
},
"devDependencies": {
2026-06-06 10:33:10 -05:00
"@effect/vitest": "4.0.0-beta.78",
2026-04-05 21:09:33 -05:00
"@types/ws": "^8.5.0",
"typescript": "^5.8.0",
2026-05-12 08:06:58 -05:00
"vitest": "^4.1.6"
2026-04-05 21:09:33 -05:00
}
}