-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.73 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
61
62
63
64
65
66
67
68
{
"name": "@serin511/compact-bot",
"version": "1.4.4",
"description": "Multi-platform chat bot (Discord + Slack) powered by Claude Code or Codex",
"type": "module",
"main": "dist/wrapper.js",
"bin": {
"compact-bot": "dist/cli.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"dist/**/*.js.map",
"src/**/*.ts",
"scripts/clean-dist.mjs",
"scripts/fix-node-pty-permissions.mjs"
],
"scripts": {
"postinstall": "node scripts/fix-node-pty-permissions.mjs",
"clean": "node scripts/clean-dist.mjs",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test && npm run test:package && npm audit --omit=dev",
"init": "node dist/cli.js init",
"start": "node dist/wrapper.js",
"dev": "tsx src/wrapper.ts",
"test": "vitest run",
"test:codex-smoke": "npm run build && node scripts/smoke-codex.mjs",
"test:package": "node scripts/test-packed-install.mjs",
"test:watch": "vitest"
},
"keywords": [
"claude",
"codex",
"openai",
"discord",
"slack",
"chatbot",
"mcp",
"claude-code"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Serin511/Compact-Bot.git"
},
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"@slack/socket-mode": "^2.0.6",
"@slack/web-api": "^7.15.0",
"@xterm/headless": "^6.0.0",
"chalk": "^5.6.2",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"node-pty": "^1.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^20.19.43",
"tsx": "^4.23.1",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}