-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 956 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 956 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
29
30
31
32
33
34
35
36
{
"name": "slack-claude-bot",
"version": "1.0.0",
"description": "Slack bot for interacting with Claude Code",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "node scripts/dev.mjs",
"test": "vitest run"
},
"dependencies": {
"@slack/bolt": "^4.1.0",
"@slack/web-api": "^7.8.0",
"dotenv": "^17.2.4",
"ioredis": "^5.4.2",
"js-yaml": "^4.1.0",
"pino": "^9.6.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.11",
"@types/uuid": "^10.0.0",
"chokidar": "^5.0.0",
"pino-pretty": "^13.1.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"packageManager": "[email protected]+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}