mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-03-31 18:00:40 +02:00
- Delete unused src/cli/ui.ts, remove zod dependency, drop 4 dead functions (logError, handleToolError, getRetryDelay, displayTimingSummary) - Remove 8 unused types/interfaces and 3 duplicate formatting utils from audit/utils.ts - Narrow export surface: make 7 message-handler functions private, remove unused audit re-exports, unexport AgentDefinition and path constants - Remove unused runClaudePrompt params (sessionMetadata, attemptNumber) and update caller - Enable tsconfig noUnusedLocals, noUnusedParameters, noImplicitReturns, noImplicitOverride, noFallthroughCasesInSwitch
34 lines
963 B
JSON
34 lines
963 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",
|
|
"zx": "^8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^25.0.3",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|