-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.37 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.37 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
{
"name": "code-container",
"version": "2.3.0",
"description": "Manage isolated Docker containers for running coding tools on different projects",
"main": "dist/main.js",
"bin": {
"container": "dist/main.js"
},
"files": [
"dist",
"scripts",
"Dockerfile"
],
"scripts": {
"build": "tsc && chmod u+x dist/main.js",
"clean": "rm -rf dist",
"start": "node dist/main.js",
"postinstall": "node scripts/postinstall.js",
"publish-latest": "npm run clean && npm run build && npm publish",
"publish-nightly": "npm run clean && npm run build && npm publish --tag nightly"
},
"author": "kevinMEH",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kevinMEH/code-container.git"
},
"bugs": "https://github.com/kevinMEH/code-container/issues",
"homepage": "https://github.com/kevinMEH/code-container",
"devDependencies": {
"@types/node": "^20.19.37",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/shell-quote": "^1.7.5",
"shell-quote": "^1.7.4",
"zod": "^4.3.6"
},
"keywords": [
"docker",
"container",
"development",
"cli",
"opencode",
"open code",
"claude code",
"claude",
"codex",
"openai",
"anthropic",
"chatbot",
"harness",
"vibe coding",
"gemini",
"gemini cli",
"copilot",
"github copilot"
]
}