-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.41 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
39
{
"name": "zutron-example-store-handlers",
"version": "0.0.1",
"private": true,
"description": "An application demonstrating the use of Zutron with action handlers which are located in the Zustand store",
"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": "pnpx shx rm -rf ./dist && pnpx 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 --inspect --sourcemap",
"build": "pnpm run typecheck && electron-vite build && electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zustand": "^5.0.3",
"zutron": "workspace:*"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"wdio-electron-service": "^7.3.1"
}
}