-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.17 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
{
"name": "agent-interaction-bridge",
"version": "0.1.0",
"description": "Local-first bounded interaction bridge for human surfaces and domain agents",
"type": "module",
"packageManager": "pnpm@11.9.0",
"bin": {
"agent-interaction-bridge": "./bin/agent-interaction-bridge.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"architecture",
"PRD.md",
"README.md",
"LICENSE",
"NOTICE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cloudsbeyond/agent-interaction-bridge.git"
},
"homepage": "https://github.com/cloudsbeyond/agent-interaction-bridge#readme",
"bugs": {
"url": "https://github.com/cloudsbeyond/agent-interaction-bridge/issues"
},
"scripts": {
"dev": "tsup --watch",
"public-safety-check": "node tools/public-safety-check.mjs",
"dependency-audit": "pnpm audit --prod",
"package-safety-check": "node tools/public-safety-check.mjs --package",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "node tools/run-tests.mjs",
"test:coverage": "node tools/run-tests.mjs --coverage --coverage.thresholds.lines=70 --coverage.thresholds.functions=78 --coverage.thresholds.branches=73 --coverage.thresholds.statements=70",
"prepublishOnly": "pnpm public-safety-check && pnpm dependency-audit && pnpm test:coverage && pnpm typecheck && pnpm build && pnpm package-safety-check"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "1.71.1",
"commander": "^12.1.0",
"https-proxy-agent": "^9.0.0",
"qrcode-terminal": "^0.12.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/qrcode-terminal": "^0.12.2",
"@vitest/coverage-v8": "3.2.6",
"tsup": "8.5.1",
"typescript": "^5.6.3",
"vite": "6.4.3",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"feishu",
"lark",
"codex",
"codex-cli",
"agent",
"agent-runtime",
"gateway",
"human-in-the-loop",
"hitl",
"interaction",
"signal-routing",
"cli",
"channel",
"bridge"
],
"license": "MIT"
}