-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.64 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "codex-xremote",
"version": "0.1.8",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bit-capybara/codex_xremote.git"
},
"homepage": "https://github.com/bit-capybara/codex_xremote#readme",
"bugs": {
"url": "https://github.com/bit-capybara/codex_xremote/issues"
},
"keywords": [
"codex",
"openai",
"web-ui",
"remote",
"cli"
],
"engines": {
"node": ">=18"
},
"bin": {
"codex-xremote": "dist-cli/index.js"
},
"files": [
"dist/",
"dist-cli/"
],
"scripts": {
"build:meta": "node ./scripts/generate-build-metadata.mjs",
"changelog:update": "node ./scripts/update-changelog.mjs",
"changelog:check": "node ./scripts/update-changelog.mjs --check",
"git:snapshot": "node ./scripts/git-snapshot.mjs",
"dev": "vite",
"build:frontend": "vue-tsc --noEmit && vite build",
"build:cli": "tsup",
"build": "npm run build:meta && npm run build:frontend && npm run build:cli",
"cap:sync": "npx cap sync android",
"cap:open": "npx cap open android",
"preview": "vite preview",
"test:smoke": "node ./scripts/run-smoke-tests.mjs",
"test:smoke:live": "node ./scripts/run-smoke-tests.mjs --live",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@capacitor/app": "^7.1.2",
"@capacitor/core": "^7.6.0",
"@capacitor/local-notifications": "^7.0.6",
"@capacitor/preferences": "^7.0.4",
"capacitor-secure-storage-plugin": "0.12.0",
"commander": "^13.1.0",
"express": "^5.1.0",
"qrcode-terminal": "^0.12.0",
"ws": "^8.21.0"
},
"overrides": {
"@xmldom/xmldom": "0.8.13",
"minimatch@9.0.9": {
"brace-expansion": "2.0.3"
},
"minimatch@10.2.4": {
"brace-expansion": "5.0.6"
},
"path-to-regexp": "^8.4.2",
"picomatch": "4.0.4",
"postcss": "8.5.15",
"qs": "^6.15.2"
},
"devDependencies": {
"@capacitor/android": "^7.6.0",
"@capacitor/cli": "^7.6.0",
"@playwright/test": "^1.54.2",
"@tailwindcss/vite": "^4.1.18",
"@types/express": "^5.0.0",
"@types/node": "^22.13.2",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^5.2.1",
"tailwindcss": "^4.1.18",
"tsx": "^4.20.5",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"vite": "^6.4.3",
"vue": "^3.5.13",
"vue-router": "^4.6.4",
"vue-tsc": "^2.2.0"
}
}