-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.84 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.84 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
{
"name": "@randomsynergy/arcane-mcp-server",
"version": "2.1.0",
"description": "MCP Server for Arcane Docker Management API - Modern Docker Management for AI Assistants",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"arcane-mcp-server": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:types": "tsx scripts/generate-types.ts",
"start": "node dist/index.js",
"start:tcp": "node dist/tcp-server.js",
"dev": "tsx src/index.ts",
"dev:tcp": "tsx src/tcp-server.ts",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src/",
"update-api-spec": "curl -so _docs/arcane_api_docs.json https://arcane.randomsynergy.xyz/api/openapi.json && npx openapi-typescript _docs/arcane_api_docs.json -o src/types/generated/arcane-api.ts",
"prepublishOnly": "npm run build:types && npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"arcane",
"docker",
"docker-compose",
"container-management",
"ai-tools",
"claude",
"anthropic",
"devops"
],
"author": "RandomSynergy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RandomSynergy17/Arcane-MCP-Server.git"
},
"bugs": {
"url": "https://github.com/RandomSynergy17/Arcane-MCP-Server/issues"
},
"homepage": "https://github.com/RandomSynergy17/Arcane-MCP-Server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"express": "^4.21.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"openapi-typescript": "^7.4.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"vitest": "^2.1.0"
}
}