forked from friuns2/codex-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) 路 1.64 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) 路 1.64 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
63
64
65
66
67
68
{
"name": "codexapp",
"version": "0.2.05",
"description": "A lightweight web interface for Codex that runs on top of the Codex app-server, allowing remote access from any browser",
"type": "module",
"license": "MIT",
"author": "Pavel Voronin, Igor Levochkin",
"publishConfig": {
"access": "public"
},
"keywords": [
"codex",
"openai",
"web-ui",
"remote",
"cli"
],
"engines": {
"node": ">=18"
},
"bin": {
"icodex": "dist-cli/index.js",
"codexapp": "dist-cli/index.js",
"codexui": "dist-cli/index.js"
},
"files": [
"dist/",
"dist-cli/",
"scripts/dev.cjs",
"scripts/fix-pty-native-build.cjs"
],
"scripts": {
"dev": "node scripts/dev.cjs",
"build:frontend": "vue-tsc --noEmit && vite build",
"build:cli": "tsup",
"build": "npm run build:frontend && npm run build:cli",
"postinstall": "node scripts/fix-pty-native-build.cjs",
"test:unit": "vitest run",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"commander": "^13.1.0",
"express": "^5.1.0",
"highlight.js": "^11.11.1",
"ws": "^8.18.3"
},
"optionalDependencies": {
"node-pty": "^1.1.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/express": "^5.0.0",
"@types/node": "^22.13.2",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^5.2.1",
"tailwindcss": "^4.1.18",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^4.1.5",
"vue": "^3.5.13",
"vue-router": "^4.6.4",
"vue-tsc": "^2.2.0"
}
}