-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 842 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 842 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
{
"name": "ccslack",
"module": "src/index.ts",
"type": "module",
"description": "Bridge Slack to your local Claude Code CLI — real-time streaming, multi-repo support, and session continuity",
"license": "MIT",
"scripts": {
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"lint": "bunx biome check src/ tests/",
"lint:fix": "bunx biome check --write src/ tests/",
"format": "bunx biome format --write src/ tests/",
"typecheck": "bunx tsc --noEmit",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "latest",
"husky": "^9.1.7"
},
"trustedDependencies": ["husky"],
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@slack/bolt": "^4.6.0",
"@slack/socket-mode": "^2.0.5"
}
}