-
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.84 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 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
69
{
"name": "@razroo/parallel-mcp-postgres",
"version": "0.1.0-beta.2",
"description": "Postgres adapter for @razroo/parallel-mcp — full AsyncParallelMcpStore implementation",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/razroo/state-trace.git",
"directory": "packages/parallel-mcp/adapters/postgres"
},
"homepage": "https://github.com/razroo/state-trace/tree/main/packages/parallel-mcp/adapters/postgres#readme",
"bugs": {
"url": "https://github.com/razroo/state-trace/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./schema": {
"types": "./dist/schema.d.ts",
"import": "./dist/schema.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",
"parallel",
"orchestration",
"postgres",
"adapter"
],
"peerDependencies": {
"@razroo/parallel-mcp": ">=0.3.0 <1.0.0"
},
"dependencies": {
"@razroo/parallel-mcp": ">=0.3.0 <1.0.0",
"pg": "^8.13.1"
},
"devDependencies": {
"@razroo/parallel-mcp-testkit": "file:../../testkit",
"@types/node": "^26.1.0",
"@types/pg": "^8.11.10",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}