-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "afk-code",
"version": "0.3.1",
"description": "Monitor and interact with Claude Code sessions from Slack/Discord/Telegram",
"author": "Colin Harman",
"repository": {
"type": "git",
"url": "https://github.com/clharman/afk-code.git"
},
"type": "module",
"bin": {
"afk-code": "./dist/cli/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli/index.ts",
"prepublishOnly": "npm run build",
"postinstall": "node -e \"const fs = require('fs'); const path = require('path'); const dir = path.dirname(path.dirname(require.resolve('node-pty'))); const prebuilds = path.join(dir, 'prebuilds'); if (fs.existsSync(prebuilds)) { fs.readdirSync(prebuilds).forEach(p => { const helper = path.join(prebuilds, p, 'spawn-helper'); if (fs.existsSync(helper)) fs.chmodSync(helper, 0o755); }); }\""
},
"files": [
"dist",
"slack-manifest.json",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"claude",
"claude-code",
"slack",
"discord",
"telegram",
"bot",
"ai",
"cli"
],
"license": "MIT",
"dependencies": {
"@slack/bolt": "^4.6.0",
"discord.js": "^14.25.1",
"grammy": "^1.35.0",
"node-pty": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}