codexui-android 0.1.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "codexui-android",
3
+ "version": "0.1.72",
4
+ "description": "A lightweight web interface for Codex that runs on top of the Codex app-server, allowing remote access from any browser",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Pavel Voronin, Igor Levochkin",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/friuns2/codexui.git"
11
+ },
12
+ "homepage": "https://github.com/friuns2/codexui#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/friuns2/codexui/issues"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "keywords": [
20
+ "codex",
21
+ "openai",
22
+ "web-ui",
23
+ "remote",
24
+ "cli"
25
+ ],
26
+ "engines": {
27
+ "node": ">=18"
28
+ },
29
+ "bin": {
30
+ "codexapp": "dist-cli/index.js",
31
+ "codexui": "dist-cli/index.js",
32
+ "codexui-android": "dist-cli/index.js"
33
+ },
34
+ "files": [
35
+ "dist/",
36
+ "dist-cli/"
37
+ ],
38
+ "dependencies": {
39
+ "commander": "^13.1.0",
40
+ "express": "^5.1.0",
41
+ "firebase": "^12.2.1",
42
+ "highlight.js": "^11.11.1",
43
+ "qrcode-terminal": "^0.12.0",
44
+ "ws": "^8.18.3"
45
+ },
46
+ "devDependencies": {
47
+ "@tailwindcss/vite": "^4.1.18",
48
+ "@types/express": "^5.0.0",
49
+ "@types/node": "^22.13.2",
50
+ "@types/qrcode-terminal": "^0.12.2",
51
+ "@types/ws": "^8.18.1",
52
+ "@vitejs/plugin-vue": "^5.2.1",
53
+ "tailwindcss": "^4.1.18",
54
+ "tsup": "^8.4.0",
55
+ "typescript": "^5.7.3",
56
+ "vite": "^6.1.0",
57
+ "vue": "^3.5.13",
58
+ "vue-router": "^4.6.4",
59
+ "vue-tsc": "^2.2.0"
60
+ },
61
+ "scripts": {
62
+ "dev": "pnpm install && vite",
63
+ "dev:open": "pnpm run build:cli && sh -c 'pnpm run dev & VPID=$!; node dist-cli/index.js --open-project \"${1:-.}\"; wait $VPID' --",
64
+ "build:frontend": "vue-tsc --noEmit && vite build",
65
+ "build:cli": "tsup",
66
+ "build": "pnpm run build:frontend && pnpm run build:cli",
67
+ "preview": "vite preview"
68
+ }
69
+ }