-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 935 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 935 Bytes
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
{
"name": "codex-webstrapper",
"version": "1.0.0",
"type": "module",
"description": "Web wrapper for Codex desktop assets with bridge + token auth",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PanicIsReal/codex-webstrap.git"
},
"homepage": "https://github.com/PanicIsReal/codex-webstrap#readme",
"bugs": {
"url": "https://github.com/PanicIsReal/codex-webstrap/issues"
},
"keywords": [
"codex",
"electron",
"web-bridge",
"websocket"
],
"bin": {
"codex-webstrap": "./bin/codex-webstrap.sh",
"codex-webstrapper": "./bin/codex-webstrap.sh"
},
"files": [
"bin/",
"src/",
"LICENSE.md",
"README.md"
],
"scripts": {
"start": "node src/server.mjs",
"test": "node --test"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@electron/asar": "^4.0.1",
"bun-pty": "^0.4.8",
"ws": "^8.18.0"
}
}