-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 978 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 978 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
39
40
41
42
{
"name": "arcane-mcp",
"mcpName": "tv.tootie/arcane-mcp",
"version": "1.2.1",
"description": "MCP server for the Arcane Docker management API",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"axios": "^1.7.0",
"dotenv": "^16.4.0",
"express": "^5.0.0",
"express-rate-limit": "^7.4.0",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"zod": "^4.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/express": "^5.0.0",
"@types/node": "^24.0.0",
"typescript": "^5.9.0",
"vitest": "^4.0.0"
},
"bin": {
"arcane-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md"
]
}