-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.34 KB
/
package.json
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": "zutron-example-reducers",
"version": "0.0.1",
"description": "An application demonstrating the use of Zutron with Redux-style reducers",
"main": "./out/main/index.js",
"type": "module",
"author": "goosewobbler",
"homepage": "https://github.com/goosewobbler/zutron",
"scripts": {
"clean": "pnpm clean:dist && pnpx shx rm -rf ./node_modules pnpm-lock.yaml",
"clean:dist": "pnpm dlx shx rm -rf ./dist && pnpm dlx shx mkdir -p ./dist",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "pnpm run typecheck && electron-vite build && electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.1",
"zutron": "workspace:*"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"electron": "^33.1.0",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"wdio-electron-service": "^7.2.0"
}
}