-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.63 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
{
"name": "codex-remote-iphone",
"version": "0.1.0",
"private": true,
"description": "Scan a QR code on your phone to control a local Codex session through a temporary Cloudflare tunnel.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jianmosier/codex-remote-iphone.git"
},
"bugs": {
"url": "https://github.com/jianmosier/codex-remote-iphone/issues"
},
"homepage": "https://github.com/jianmosier/codex-remote-iphone#readme",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"workspaces": [
"apps/bridge",
"apps/web"
],
"scripts": {
"build": "npm run build --workspaces",
"help": "npm --workspace @codex-remote-iphone/bridge run help",
"setup": "npm --workspace @codex-remote-iphone/bridge run setup",
"doctor": "npm --workspace @codex-remote-iphone/bridge run doctor --",
"prestart": "npm --workspace @codex-remote-iphone/web run build",
"start": "npm --workspace @codex-remote-iphone/bridge run start --",
"prerestart": "npm --workspace @codex-remote-iphone/web run build",
"restart": "npm --workspace @codex-remote-iphone/bridge run restart --",
"update": "npm --workspace @codex-remote-iphone/bridge run update --",
"prenew": "npm --workspace @codex-remote-iphone/web run build",
"new": "npm --workspace @codex-remote-iphone/bridge run new --",
"predev": "npm --workspace @codex-remote-iphone/web run build",
"dev": "npm --workspace @codex-remote-iphone/bridge run dev --",
"stop": "npm --workspace @codex-remote-iphone/bridge run stop",
"uninstall": "npm --workspace @codex-remote-iphone/bridge run uninstall",
"status": "npm --workspace @codex-remote-iphone/bridge run status",
"qr": "npm --workspace @codex-remote-iphone/bridge run qr",
"approvals": "npm --workspace @codex-remote-iphone/bridge run approvals",
"approve": "npm --workspace @codex-remote-iphone/bridge run approve --",
"deny": "npm --workspace @codex-remote-iphone/bridge run deny --",
"max": "npm --workspace @codex-remote-iphone/bridge run max --",
"policy": "npm --workspace @codex-remote-iphone/bridge run policy --",
"logs": "npm --workspace @codex-remote-iphone/bridge run logs --",
"test": "npm run test --workspaces",
"typecheck": "npm run typecheck --workspaces",
"install-skill": "node scripts/install-skill.mjs"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.1.1",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.13",
"tsx": "^4.21.0"
}
}