-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "codex-debug-bridge",
"version": "0.3.0",
"private": false,
"type": "module",
"description": "Personal single-owner bridge from BlueBubbles, Telegram, Slack, WhatsApp, or Teams into one live Codex App task with private authority and Memory Forest context",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hyungchulc/codex-debug-bridge.git"
},
"files": [
".env.example",
"LICENSE",
"README.md",
"SECURITY.md",
"docs/",
"examples/",
"prompts/",
"scripts/",
"skills/",
"src/",
"templates/"
],
"bin": {
"codex-debug-bridge-init-authority": "scripts/init-authority.js",
"codex-debug-bridge-validate-authority": "scripts/validate-authority.js"
},
"scripts": {
"start": "node src/server.js",
"test": "node --test",
"setup:authority": "node scripts/init-authority.js",
"validate:authority": "node scripts/validate-authority.js",
"audit:public": "node scripts/audit-public-release.js",
"check:syntax": "node scripts/check-syntax.js",
"check": "npm run check:syntax && npm test && npm run audit:public",
"probe:codex": "node scripts/probe-codex.js",
"probe:bluebubbles": "node scripts/probe-bluebubbles.js"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@microsoft/teams.apps": "2.0.14"
}
}