mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-06-13 02:37:46 +02:00
50629a24ab
- Delete src/shannon.ts direct CLI entry point (Temporal is now the only mode) - Remove .shannon-store.json session lock (Temporal handles workflow deduplication) - Remove broken scripts/export-metrics.js (imported non-existent function) - Update package.json to remove main, start script, and bin entry - Clean up CLAUDE.md and debug.md to remove obsolete references
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
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",
|
|
"temporal:query": "node dist/temporal/query.js"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
|
|
"@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": "^3.22.4",
|
|
"zx": "^8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^25.0.3",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|