-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 837 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 837 Bytes
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
{
"name": "@crunchloop/mcp-devcontainers",
"version": "0.0.3",
"description": "MCP for devcontainers",
"private": false,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/crunchloop/mcp-devcontainers.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"files": [
"dist"
],
"bin": {
"crunchloop-dev-mcp": "dist/index.js"
},
"dependencies": {
"@devcontainers/cli": "^0.75.0",
"@modelcontextprotocol/sdk": "^1.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^22.13.1",
"eslint": "^9.24.0",
"typescript": "^4.9.5",
"typescript-eslint": "^8.30.1"
}
}