forked from kevinMEH/code-container
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "@botanicastudios/code-container",
"version": "2.0.10",
"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",
"prepack": "npm run clean && npm run build",
"start": "node dist/main.js",
"postinstall": "node scripts/postinstall.js",
"publish-latest": "npm publish",
"publish-nightly": "npm publish --tag nightly"
},
"keywords": [
"docker",
"container",
"development",
"cli"
],
"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": {
"zod": "^4.3.6"
}
}