mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-05-19 15:38:23 +02:00
45e9f305ea
Query functionality is redundant with the Temporal Web UI at http://localhost:8233. Removes query.ts, CLI handler, npm script, and all documentation references.
35 lines
984 B
JSON
35 lines
984 B
JSON
{
|
|
"name": "shannon",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"temporal:server": "docker compose -f docker/docker-compose.temporal.yml up temporal -d",
|
|
"temporal:server:stop": "docker compose -f docker/docker-compose.temporal.yml down",
|
|
"temporal:worker": "node dist/temporal/worker.js",
|
|
"temporal:start": "node dist/temporal/client.js"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "^0.2.38",
|
|
"@temporalio/activity": "^1.11.0",
|
|
"@temporalio/client": "^1.11.0",
|
|
"@temporalio/worker": "^1.11.0",
|
|
"@temporalio/workflow": "^1.11.0",
|
|
"ajv": "^8.12.0",
|
|
"ajv-formats": "^2.1.1",
|
|
"boxen": "^8.0.1",
|
|
"chalk": "^5.0.0",
|
|
"dotenv": "^16.4.5",
|
|
"figlet": "^1.9.3",
|
|
"gradient-string": "^3.0.0",
|
|
"js-yaml": "^4.1.0",
|
|
"zod": "^4.3.6",
|
|
"zx": "^8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^25.0.3",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|