-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.16 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.16 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dockashell",
"version": "0.2.2",
"description": "MCP server that gives every AI Agent its own isolated Docker container",
"type": "module",
"bin": {
"dockashell": "./src/cli/cli.js"
},
"scripts": {
"dev:tui": "node src/cli/cli.js logs",
"cli": "node src/cli/cli.js",
"debug": "npx @modelcontextprotocol/inspector node src/mcp/mcp-server.js",
"test": "node --test test/**/*.test.js",
"test:integration": "node test/integration/test-*.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release:patch": "release-it patch",
"release:minor": "release-it minor",
"release:major": "release-it major",
"release:from-main": "./scripts/release-from-main.sh"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@inquirer/confirm": "^5.1.12",
"@inquirer/input": "^4.1.12",
"@inquirer/password": "^4.0.15",
"@modelcontextprotocol/sdk": "^1.0.0",
"@nanostores/react": "^1.0.0",
"bcryptjs": "^3.0.2",
"chokidar": "^4.0.3",
"commander": "^14.0.0",
"cors": "^2.8.5",
"dockerode": "^4.0.0",
"express": "^4.19.2",
"fs-extra": "^11.0.0",
"ink": "^5.2.1",
"lodash.throttle": "^4.1.1",
"nanostores": "^1.0.1",
"picocolors": "^1.1.1",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"mcp",
"docker",
"ai",
"agent",
"container"
],
"author": "https://github.com/anzax",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/anzax/dockashell.git"
},
"homepage": "https://github.com/anzax/dockashell#readme",
"bugs": {
"url": "https://github.com/anzax/dockashell/issues"
},
"files": [
"src/",
"docker/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.2.0",
"ink-testing-library": "^4.0.0",
"prettier": "^3.5.3",
"release-it": "^19.0.3"
}
}