-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.36 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.36 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
84
85
86
87
88
89
90
91
92
{
"name": "quorum-audit",
"version": "0.6.5",
"description": "Cross-model audit gate with structural enforcement. Edit → audit → agree → retro → commit.",
"type": "module",
"author": {
"name": "berrzebb",
"url": "https://github.com/berrzebb"
},
"repository": "https://github.com/berrzebb/quorum",
"homepage": "https://github.com/berrzebb/quorum#readme",
"license": "MIT",
"keywords": [
"code-review",
"consensus",
"quorum",
"audit",
"orchestrator",
"cross-model",
"ai-agents",
"claude-code",
"codex",
"gemini"
],
"bin": {
"quorum": "dist/platform/cli/index.js"
},
"pkg": {
"assets": [
"platform/core/**/*",
"node_modules/better-sqlite3/build/Release/better_sqlite3.node"
],
"outputPath": "release"
},
"scripts": {
"clean:dist": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
"build": "npm run clean:dist && tsc && node --input-type=module -e \"import{cpSync}from'node:fs';cpSync('platform/core/markdown-table-parser.mjs','dist/platform/core/markdown-table-parser.mjs');\"",
"preversion": "npm run version-sync",
"postversion": "npm run version-sync",
"prepublishOnly": "npm run build",
"package": "pkg dist/platform/cli/index.js --compress GZip",
"dev": "tsx daemon/index.ts",
"daemon": "node dist/daemon/index.js",
"test": "node tests/run-suite.mjs all",
"test:all": "node tests/run-suite.mjs all",
"test:list": "node tests/run-suite.mjs --list",
"test:smoke": "node tests/run-suite.mjs smoke",
"test:contracts": "node tests/run-suite.mjs contracts",
"test:runtime": "node tests/run-suite.mjs runtime",
"test:providers": "node tests/run-suite.mjs providers",
"test:tools": "node tests/run-suite.mjs tools",
"test:hooks": "node tests/run-suite.mjs hooks",
"test:parliament": "node tests/run-suite.mjs parliament",
"test:orchestrate": "node tests/run-suite.mjs orchestrate",
"test:integration": "node tests/run-suite.mjs integration",
"test:single": "node --test",
"mcp": "node platform/core/tools/mcp-server.mjs",
"tool": "node platform/core/tools/tool-runner.mjs",
"typecheck": "tsc --noEmit",
"version-sync": "node --input-type=module -e \"import{readFileSync as r,writeFileSync as w}from'fs';const v=JSON.parse(r('package.json','utf8')).version;const f='platform/adapters/gemini/gemini-extension.json';const j=JSON.parse(r(f,'utf8'));j.version=v;w(f,JSON.stringify(j,null,2)+'\\n');console.log('Synced '+v+' → '+f)\""
},
"dependencies": {
"diff-match-patch": "^1.0.5",
"globby": "^16.2.0",
"ink": "^6.0.0",
"marked": "^17.0.5",
"quorum-audit": "^0.2.5",
"react": "^19.0.0",
"tree-sitter-go": "0.23.4",
"tree-sitter-java": "0.23.5",
"tree-sitter-python": "0.23.6",
"tree-sitter-rust": "0.23.2",
"tree-sitter-typescript": "0.23.2",
"web-tree-sitter": "0.24.7"
},
"optionalDependencies": {
"better-sqlite3": "^12.8.0",
"hnswlib-node": "^3.0.0",
"onnxruntime-node": "^1.24.3",
"usearch": "^2.21.4",
"vectra": "^0.14.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/diff-match-patch": "^1.0.36",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@yao-pkg/pkg": "^6.14.1",
"tsx": "^4.0.0",
"typescript": "^5.7.0"
}
}