forked from RNG2018-mlxg/CodexMobile
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.4 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
{
"name": "codexmobile",
"version": "2.0.5",
"description": "Private cross-device Codex PWA workbench for local sessions, desktop sync, queues, Git, skills, and private-network notifications.",
"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",
"up": "node scripts/up.mjs",
"pair": "node scripts/pair.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",
"jszip": "^3.10.1",
"lucide-react": "^0.515.0",
"mammoth": "^1.12.0",
"mermaid": "^11.15.0",
"opencc-js": "^1.0.5",
"pdfjs-dist": "^5.7.284",
"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",
"web-push": "^3.6.7",
"ws": "^8.14.2",
"xlsx": "^0.18.5"
}
}