-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.63 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
{
"name": "codex-switch",
"version": "1.16.0",
"description": "Cross-platform desktop GUI proxy that lets Codex CLI / Desktop talk to DeepSeek.",
"author": "Codex Switch Contributors",
"license": "MIT",
"private": true,
"main": "dist/electron/main.js",
"scripts": {
"dev": "concurrently -k -n vite,electron -c blue,green \"pnpm dev:renderer\" \"pnpm dev:electron\"",
"dev:renderer": "vite",
"dev:electron": "wait-on tcp:5173 && tsc -p tsconfig.electron.json --watch & node scripts/start-electron-dev.mjs",
"build": "node scripts/make-icons.mjs && pnpm build:renderer && pnpm build:electron",
"build:renderer": "vite build",
"build:electron": "tsc -p tsconfig.electron.json",
"typecheck": "tsc -p tsconfig.electron.json --noEmit && tsc -p tsconfig.renderer.json --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"package:mac": "pnpm build && electron-builder --mac --x64 --arm64 --publish never",
"package:mac:universal": "pnpm build && electron-builder --mac --universal --publish never",
"package:win": "node scripts/unblock-win-packager.mjs && pnpm build && electron-builder --win --x64 --arm64 --publish never",
"package:all": "node scripts/unblock-win-packager.mjs && pnpm build && electron-builder -mwl --x64 --arm64 --publish never"
},
"dependencies": {
"electron-log": "^5.1.7",
"electron-store": "^8.2.0",
"electron-updater": "^6.8.9",
"keytar": "^7.9.0",
"ws": "^8.18.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"electron": "^30.1.2",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^29.1.1",
"postcss": "^8.4.39",
"prettier": "^3.8.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.4",
"tsx": "^4.22.4",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vitest": "^1.6.0",
"wait-on": "^7.2.0"
},
"packageManager": "[email protected]"
}