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
83 lines (83 loc) · 2.77 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.77 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@razroo/parallel-mcp",
"version": "0.4.0",
"description": "Durable orchestration core for parallel MCP workloads",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/razroo/parallel-mcp.git"
},
"homepage": "https://github.com/razroo/parallel-mcp#readme",
"bugs": {
"url": "https://github.com/razroo/parallel-mcp/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"workspaces": [
"server",
"testkit",
"adapters/postgres",
"adapters/memory"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:server": "npm run build --workspace @razroo/parallel-mcp-server",
"build:testkit": "npm run build --workspace @razroo/parallel-mcp-testkit",
"build:postgres": "npm run build --workspace @razroo/parallel-mcp-postgres",
"build:memory": "npm run build --workspace @razroo/parallel-mcp-memory",
"build:all": "npm run build && npm run build:server && npm run build:testkit && npm run build:postgres && npm run build:memory",
"check": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit && npm run check --workspaces --if-present",
"test": "vitest run",
"test:server": "npm run test --workspace @razroo/parallel-mcp-server",
"test:testkit": "npm run test --workspace @razroo/parallel-mcp-testkit",
"test:postgres": "npm run test --workspace @razroo/parallel-mcp-postgres",
"test:memory": "npm run test --workspace @razroo/parallel-mcp-memory",
"test:all": "npm run test && npm run test:server && npm run test:testkit && npm run test:postgres && npm run test:memory",
"test:watch": "vitest",
"prepublishOnly": "npm run check && npm test && npm run build",
"pack:check": "npm run prepublishOnly && npm pack --dry-run",
"example:fan-out": "tsx examples/fan-out.ts",
"example:retry-and-resume": "tsx examples/retry-and-resume.ts",
"example:multi-worker": "tsx examples/multi-worker.ts",
"example:async-dlq-triage": "tsx examples/async-dlq-triage.ts",
"bench:claims": "tsx bench/claim-throughput.ts",
"bench:claims:async": "tsx bench/claim-throughput-async.ts",
"docs:api": "typedoc"
},
"keywords": [
"mcp",
"parallel",
"orchestration",
"workflow",
"sqlite"
],
"dependencies": {
"better-sqlite3": ">=11.0.0 <13.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}