-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 754 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "mobile-codex",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Secure mobile-first remote control MVP for Codex.",
"scripts": {
"relay": "node relay/server.js",
"agent": "node agent/agent.js",
"relay:start": "node scripts/start-relay.js",
"agent:start": "node scripts/start-agent.js",
"agent:pair": "node scripts/start-agent.js --pair",
"init:relay": "node scripts/init-relay.js",
"init:agent": "node scripts/init-agent.js",
"scaffold:production": "node scripts/scaffold-production.js",
"gen-secret": "node scripts/gen-secret.js",
"hash-token": "node scripts/hash-token.js",
"check": "node scripts/check-config.js"
},
"engines": {
"node": ">=24.0.0"
}
}