-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "mcp-devcontainers",
"version": "1.0.1",
"description": "MCP Server for devcontainers management",
"private": false,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/AI-QL/mcp-devcontainers"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"modelcontextprotocol",
"mcp",
"mcp-devcontainer",
"devcontainer",
"mcp-server"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint -f stylish src",
"lint:fix": "eslint -f stylish --fix src"
},
"files": [
"dist"
],
"bin": {
"mcp-devcontainers": "dist/index.js"
},
"dependencies": {
"@devcontainers/cli": "^0.80.0",
"@modelcontextprotocol/sdk": "^1.16.0",
"express": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/express": "^5.0.3",
"@types/node": "^24.0.15",
"eslint": "^9.31.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0"
}
}