-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.68 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
{
"name": "@codespin/codebox",
"version": "0.0.49",
"description": "An MCP server for executing commands in Docker containers",
"type": "module",
"main": "dist/cli/index.js",
"scripts": {
"build": "shx rm -rf dist && tsc && shx chmod +x dist/cli/index.js",
"start": "node dist/cli/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"*.json\" \"*.js\" \"*.md\"",
"format:check": "prettier --check \"src/**/*.ts\" \"*.json\" \"*.js\" \"*.md\"",
"test": "npm run build:test && mocha",
"build:test": "shx rm -rf dist && tsc -p tsconfig.test.json && shx chmod +x dist/cli/index.js"
},
"bin": {
"codebox": "dist/cli/index.js"
},
"keywords": [
"mcp",
"docker",
"llm"
],
"author": "Codespin AI",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"cors": "^2.8.5",
"diff": "^8.0.0",
"express": "^5.1.0",
"ignore": "^7.0.0",
"minimatch": "^10.0.1",
"source-map-support": "^0.5.21",
"uuid": "^11.1.0",
"yargs": "^18.0.0",
"zod": "^3.25.56"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/chai": "^5.2.3",
"@types/cors": "^2.8.17",
"@types/diff": "^7.0.0",
"@types/express": "^5.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.30",
"@types/source-map-support": "^0.5.10",
"@types/supertest": "^6.0.3",
"@types/yargs": "^17.0.33",
"chai": "^6.2.2",
"eslint": "^9.28.0",
"globals": "^15.14.0",
"mocha": "^11.5.0",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"supertest": "^7.1.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
}
}