@nervmor/codexui 1.0.0

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,67 @@
1
+ {
2
+ "name": "@nervmor/codexui",
3
+ "version": "1.0.0",
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": "nervmor",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/nervmor/codexui.git"
11
+ },
12
+ "homepage": "https://github.com/nervmor/codexui#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/nervmor/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
+ },
33
+ "files": [
34
+ "dist/",
35
+ "dist-cli/"
36
+ ],
37
+ "scripts": {
38
+ "dev": "vite",
39
+ "build:frontend": "vue-tsc --noEmit && vite build",
40
+ "build:cli": "tsup",
41
+ "build": "npm run build:frontend && npm run build:cli",
42
+ "preview": "vite preview",
43
+ "prepublishOnly": "npm run build"
44
+ },
45
+ "dependencies": {
46
+ "commander": "^13.1.0",
47
+ "express": "^5.1.0",
48
+ "firebase": "^12.2.1",
49
+ "qrcode-terminal": "^0.12.0",
50
+ "ws": "^8.18.3"
51
+ },
52
+ "devDependencies": {
53
+ "@tailwindcss/vite": "^4.1.18",
54
+ "@types/express": "^5.0.0",
55
+ "@types/node": "^22.13.2",
56
+ "@types/qrcode-terminal": "^0.12.2",
57
+ "@types/ws": "^8.18.1",
58
+ "@vitejs/plugin-vue": "^5.2.1",
59
+ "tailwindcss": "^4.1.18",
60
+ "tsup": "^8.4.0",
61
+ "typescript": "^5.7.3",
62
+ "vite": "^6.1.0",
63
+ "vue": "^3.5.13",
64
+ "vue-router": "^4.6.4",
65
+ "vue-tsc": "^2.2.0"
66
+ }
67
+ }