forked from He11oLiu/openCodexMicro
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.29 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
{
"name": "open-codex-micro",
"version": "0.4.1",
"private": true,
"type": "module",
"description": "Control Codex Desktop from Ulanzi Studio through a local bridge",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test test/*_test.mjs",
"build:bridge": "node scripts/build-bridge.mjs",
"build:plugin": "npm --prefix integration/com.ulanzi.codexmicro.ulanziPlugin run build",
"check:node": "node --check scripts/install.mjs && node --check scripts/install-plugin.mjs && node --check scripts/uninstall.mjs && node --check scripts/build-bridge.mjs && node --check src/bridge/thread-key.mjs && node --check src/bridge/codex-cdp.mjs && node --check src/bridge/server.mjs",
"check:plugin": "npm --prefix integration/com.ulanzi.codexmicro.ulanziPlugin run check && npm --prefix integration/com.ulanzi.codexmicro.ulanziPlugin run smoke",
"check": "npm run test && npm run check:node && npm run build:bridge && npm run build:plugin && npm run check:plugin",
"setup": "node scripts/install.mjs",
"install:plugin": "node scripts/install-plugin.mjs",
"bridge:start": "open \"$HOME/Applications/Codex Bridge.app\"",
"uninstall": "node scripts/uninstall.mjs"
},
"devDependencies": {
"esbuild": "^0.25.12",
"ws": "^8.21.1"
}
}