-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 984 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 984 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
43
{
"name": "@botanicastudios/process-manager-mcp",
"version": "0.3.3",
"type": "module",
"description": "MCP server for managing processes with persistent storage",
"main": "dist/index.js",
"bin": {
"process-manager-mcp": "dist/cli-entry.js",
"procman": "dist/cli-entry.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"prepublishOnly": "npm run build"
},
"files": [
"dist/"
],
"keywords": [
"mcp",
"process-manager",
"typescript"
],
"author": "Botanica Studios",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/ui": "^2.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^14.0.0",
"conf": "^13.0.0",
"execa": "^9.0.0",
"zod": "^3.23.0"
}
}