-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.25 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
{
"name": "@orpc/electron-playground",
"version": "1.13.9",
"main": "./out/main/index.js",
"scripts": {
"setup": "electron-builder install-app-deps",
"type:check": "tsc -b",
"start": "pnpm run setup && electron-vite preview",
"dev": "pnpm run setup && electron-vite dev",
"build": "pnpm run setup && electron-vite build",
"build:unpack": "pnpm run build && electron-builder --dir",
"build:win": "pnpm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/tsconfig": "^2.0.0",
"@electron-toolkit/utils": "^4.0.0",
"@orpc/client": "next",
"@orpc/server": "next",
"@orpc/tanstack-query": "next",
"@orpc/zod": "next",
"@tanstack/react-query": "^5.91.2",
"@types/node": "^22.19.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"zod": "^4.3.6"
}
}