This repository was archived by the owner on May 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.76 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
69
{
"name": "@razroo/parallel-mcp-server",
"version": "0.4.0",
"description": "MCP server that exposes @razroo/parallel-mcp orchestration tools over stdio",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/razroo/parallel-mcp.git",
"directory": "server"
},
"homepage": "https://github.com/razroo/parallel-mcp/tree/main/server#readme",
"bugs": {
"url": "https://github.com/razroo/parallel-mcp/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"parallel-mcp-server": "./dist/bin.js",
"parallel-mcp-server-http": "./dist/bin-http.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "node ./scripts/prepack.mjs",
"postpublish": "node ./scripts/postpack.mjs",
"prepublishOnly": "npm run check && npm test && npm run build",
"pack:check": "npm run prepublishOnly && npm pack --dry-run; node ./scripts/postpack.mjs"
},
"keywords": [
"mcp",
"model-context-protocol",
"parallel",
"orchestration",
"stdio"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@razroo/parallel-mcp": "file:..",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}