-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "bolt-js-starter-agent-claude",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"scripts": {
"check": "npx tsc --checkJs --noEmit --skipLibCheck --esModuleInterop --target esnext --module nodenext --moduleResolution nodenext app.js",
"start": "node app.js",
"start:render": "node scripts/start-render.mjs",
"lint": "npx @biomejs/biome check .",
"lint:fix": "npx @biomejs/biome check --write .",
"test": "node --test",
"eval": "node consensus-core/eval/run-eval.js"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.205",
"@slack/bolt": "^4.7.3",
"dotenv": "~17.4.2",
"mongodb": "^6.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@slack/cli-hooks": "^1.3.3",
"mongodb-memory-server": "^10.4.3",
"typescript": "^6.0.3"
}
}