forked from flyyangX/CodexMobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.13 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
{
"name": "codexmobile",
"version": "0.1.0",
"description": "iPhone-first PWA bridge for using a local Codex setup over a private network.",
"license": "MIT",
"type": "module",
"scripts": {
"dev:server": "node server/index.js",
"dev:client": "vite --host 0.0.0.0 --config client/vite.config.js",
"build": "vite build --config client/vite.config.js",
"start": "node server/index.js",
"start:env": "node --env-file=.env server/index.js",
"start:bg": "node scripts/start-server.mjs",
"mac:autostart": "node scripts/install-macos-autostart.mjs",
"mac:autostart:remove": "node scripts/install-macos-autostart.mjs --uninstall",
"asr:start": "node scripts/start-asr.mjs",
"postinstall": "node scripts/patch-codex-sdk.mjs",
"smoke": "node scripts/smoke.mjs"
},
"dependencies": {
"@openai/codex-sdk": "^0.128.0",
"@vitejs/plugin-react": "^4.6.0",
"lucide-react": "^0.515.0",
"opencc-js": "^1.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"vite": "^7.0.4",
"ws": "^8.14.2"
}
}