-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.5 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
{
"name": "codex-quota-desktop",
"version": "0.4.6",
"description": "Desktop app for managing multiple Codex accounts and comparing quota",
"author": "刘升龙 <liushenglong_8597@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Ldsystem/CodeX-Quota-Desktop.git"
},
"main": "./out/main/index.js",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.2",
"engines": {
"//": "undici 8 needs worker_threads.markAsUncloneable, which Node 20 lacks.",
"node": ">=22"
},
"scripts": {
"dev": "electron-vite dev",
"dev:web": "vite --config vite.web.config.ts",
"build": "electron-vite build",
"dist": "electron-vite build && electron-builder --mac --arm64 --publish never",
"dist:win": "electron-vite build && electron-builder --win --x64 --publish never",
"preview": "electron-vite preview",
"test": "vitest run",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"undici": "^8.10.0"
},
"devDependencies": {
"@fontsource/fira-code": "^5.2.5",
"@phosphor-icons/react": "^2.1.7",
"@types/node": "^26.2.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"electron": "^36.2.0",
"electron-builder": "^25.1.8",
"electron-vite": "^3.1.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^4.1.10"
}
}