-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.68 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.68 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": "agent-session-broker-repo",
"version": "0.1.26",
"private": true,
"description": "Slack + China Feishu broker that routes chat sessions into Codex app-server sessions with isolated workspaces.",
"homepage": "https://github.com/HOOLC/slack-codex-broker#readme",
"bugs": {
"url": "https://github.com/HOOLC/slack-codex-broker/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HOOLC/slack-codex-broker.git"
},
"type": "module",
"scripts": {
"build": "pnpm build:admin-ui && tsc -p tsconfig.json && node scripts/build/copy-static-assets.mjs",
"build:admin-ui": "vp build",
"dev": "tsx watch src/index.ts",
"dev:admin": "node scripts/dev/admin.mjs",
"dev:admin:remote": "node scripts/dev/admin-remote.mjs",
"dev:admin:server": "tsx watch src/admin-index.ts",
"dev:admin-ui": "vp dev --host 127.0.0.1 --port 5173",
"dev:worker": "tsx watch src/worker-index.ts",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"hooks:install": "lefthook install",
"lint": "oxlint . --deny-warnings",
"lint:fix": "oxlint . --fix --deny-warnings",
"ops:check:real": "node scripts/ops/check-real.mjs",
"ops:auth:real": "node scripts/ops/auth-real.mjs",
"ops:auth:profiles": "node scripts/ops/auth-profiles.mjs",
"ops:ui:real": "node scripts/ops/auth-ui-real.mjs",
"ops:rollout:real": "node scripts/ops/rollout-real.mjs",
"ops:status:real": "node scripts/ops/status-real.mjs",
"ops:macos:bootstrap": "node scripts/ops/macos-bootstrap.mjs",
"release:stage": "node scripts/build/stage-npm-packages.mjs",
"release:pack": "pnpm build && pnpm release:stage && find artifacts -maxdepth 1 -name '*.tgz' -delete && npm pack artifacts/npm-packages/admin --pack-destination artifacts && npm pack artifacts/npm-packages/worker --pack-destination artifacts",
"start": "node dist/src/index.js",
"start:admin": "node dist/src/admin-index.js",
"start:worker": "node dist/src/worker-index.js",
"test": "vitest run --no-file-parallelism",
"test:e2e:mock": "tsx test/manual/run-mock-e2e.ts",
"test:e2e:feishu-mock": "vitest run test/feishu-codex-bridge.test.ts test/feishu-platform-adapter.test.ts test/feishu-fixture-replay.test.ts test/dual-platform-runtime.test.ts",
"manual:test": "tsx test/manual/run-real-codex-smoke.ts",
"manual:codex-coding-smoke": "tsx test/manual/run-real-codex-coding-smoke.ts",
"manual:feishu-smoke": "tsx test/manual/run-real-feishu-smoke.ts --",
"manual:self-regression": "tsx test/manual/run-self-regression.ts --",
"manual:feishu-controlled-evidence": "tsx test/manual/write-controlled-feishu-smoke-evidence.ts",
"rfc:feishu-audit": "tsx test/manual/run-rfc-0001-local-audit.ts",
"rfc:feishu-audit:local": "tsx test/manual/run-rfc-0001-local-audit.ts -- --local-only",
"rfc:feishu-completion-audit": "tsx test/manual/run-rfc-0001-completion-audit.ts",
"rfc:feishu-test-plan": "tsx test/manual/run-rfc-0001-test-plan.ts"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.66.0",
"@modelcontextprotocol/sdk": "1.27.1",
"marked": "^18.0.4",
"react": "19.2.6",
"react-dom": "19.2.6",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "6.0.1",
"lefthook": "^2.1.9",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"oxlint-tsgolint": "^0.22.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "8.0.11",
"vite-plus": "0.1.20",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@10.33.0"
}