-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.28 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
{
"name": "@susyimes/groupx",
"version": "0.1.16",
"description": "Local transparent group-chat broker for Codex, Grok, Kimi, Hermes, and Claude Code CLIs",
"type": "module",
"main": "dist/src/main.js",
"types": "dist/src/main.d.ts",
"exports": {
".": {
"types": "./dist/src/main.d.ts",
"import": "./dist/src/main.js",
"default": "./dist/src/main.js"
}
},
"bin": {
"groupx": "dist/src/cli.js"
},
"files": [
"dist/src",
"!dist/src/adapters/direct",
"!dist/src/adapters/kimi-config-preflight*",
"dist/web",
"docs/assets/groupx-demo.gif"
],
"engines": {
"node": ">=24.14.1 <25"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/susyimes/GroupX.git"
},
"homepage": "https://github.com/susyimes/GroupX#readme",
"bugs": "https://github.com/susyimes/GroupX/issues",
"keywords": [
"groupx",
"codex",
"grok",
"kimi",
"hermes",
"claude",
"cli",
"multi-agent",
"group-chat",
"broker",
"acp"
],
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/copy-web.mjs",
"dev": "npm run build && node --enable-source-maps dist/src/cli.js start",
"start": "node --enable-source-maps dist/src/cli.js start",
"m0:matrix": "tsx src/m0/cli.ts render",
"m0:apply:structured-gate": "tsx src/m0/probe-cli.ts apply-structured-gate",
"m0:probe:fixtures": "tsx src/m0/probe-cli.ts fixtures",
"m0:probe:structured": "tsx src/m0/probe-cli.ts structured",
"m0:validate": "tsx src/m0/cli.ts validate",
"m0:validate:evidence": "tsx src/m0/cli.ts validate --verify-evidence-files",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"better-sqlite3": "13.0.3",
"smol-toml": "1.6.1",
"zod": "4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "9.6.0",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "4.1.10",
"esbuild": "0.28.2",
"tsx": "4.23.12",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}