-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.35 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@pollit/twin-dev-bot",
"version": "0.0.6",
"description": "Slack bot that runs Claude Code via thread-based conversations",
"type": "module",
"bin": {
"twindevbot": "bin/twindevbot.js"
},
"files": [
"dist",
"bin"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"dev:server": "tsx src/server.ts",
"start:server": "node dist/server.js",
"stop": "node dist/cli.js stop",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"claude",
"slack",
"bridge",
"claude-code",
"ai",
"automation"
],
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/hyeonseungk/twin-dev-bot.git"
},
"bugs": {
"url": "https://github.com/hyeonseungk/twin-dev-bot/issues"
},
"homepage": "https://github.com/hyeonseungk/twin-dev-bot#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@slack/bolt": "^4.6.0",
"@slack/types": "^2.19.0",
"@slack/web-api": "^7.13.0",
"dotenv": "^16.4.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^4.0.18"
}
}