-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "code-helm",
"version": "0.2.11",
"description": "Control local Codex sessions from Discord: approve, resume, interrupt, and monitor AI coding work from your phone.",
"license": "MIT",
"bin": {
"code-helm": "bin/code-helm"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/humeo/code-helm.git"
},
"homepage": "https://github.com/humeo/code-helm#readme",
"bugs": {
"url": "https://github.com/humeo/code-helm/issues"
},
"files": [
"bin",
"src",
"README.md"
],
"scripts": {
"dev": "bun run src/index.ts",
"dev:cli": "bun run src/cli.ts start",
"test": "bun test",
"migrate": "bun run src/db/migrate.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@iarna/toml": "^2.2.5",
"discord.js": "^14.26.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"undici": "6.24.1",
"zod": "^3.25.76"
},
"devDependencies": {
"bun-types": "^1.3.11",
"typescript": "^5.9.3"
}
}