-
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.8 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.8 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": "codexbridge",
"version": "0.1.0-alpha.7",
"description": "Managed team access layer for Codex with Feishu, Telegram, credits, audit logs, and persistent workspaces.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Moshiii/CodexBridge.git"
},
"homepage": "https://github.com/Moshiii/CodexBridge#readme",
"keywords": [
"codex",
"ai-assistant",
"file-workspace",
"document-generation",
"file-editing",
"assistant-runtime",
"llm-systems"
],
"bin": {
"codexbridge": "bin/codexbridge.mjs"
},
"files": [
"bin/",
"crates/codexbridge-tui/Cargo.lock",
"crates/codexbridge-tui/Cargo.toml",
"crates/codexbridge-tui/src/",
"docs/api-reference.md",
"docs/current-architecture.md",
"docs/codexbridge-capability-overview.md",
"docs/assets/",
"docs/demo-workflows.md",
"docs/feishu-channel-current-state.md",
"docs/getting-started.md",
"docs/readme/",
"docs/reference/templates/",
"docs/runtime-layout.md",
"docs/telegram-codex-bridge.md",
"docs/test-plan.md",
"plugins/",
"scripts/",
"src/",
".env.example",
"README.md",
"ROADMAP.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"ci": "npm test",
"postinstall": "node ./scripts/postinstall.mjs",
"start": "node ./bin/codexbridge.mjs",
"tui": "node ./bin/codexbridge.mjs tui",
"isolation:probe": "node ./bin/isolation-probe.mjs",
"rollback:check": "node ./bin/rollback-readiness.mjs",
"state:migrate": "node ./bin/state-migrations.mjs",
"test": "node --test --test-concurrency=1"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@clack/prompts": "^1.7.0",
"log-update": "^8.0.0",
"yoctocolors": "^2.1.2"
}
}