-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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
40
41
42
43
44
45
{
"name": "hacks-of-mistria",
"version": "0.9.4",
"description": "A tool to edit your save files in Fields of Mistria",
"main": "./out/main/index.js",
"author": "arkatsy",
"scripts": {
"prepare": "husky || true",
"dev": "set NODE_ENV=development && electron-vite dev",
"measure-unpacking": "node ./scripts/measure-unpacking.js",
"update-ids": "node ./scripts/update-ids.js",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build": "set NODE_ENV=production && electron-vite build && electron-builder --win"
},
"husky": {},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npx prettier --write --config ./.prettierrc.yaml"
},
"dependencies": {
"@chakra-ui/react": "^3.2.1",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@emotion/react": "^11.13.3",
"@tanstack/react-query": "^5.61.3",
"@tanstack/react-query-devtools": "^5.61.3",
"next-themes": "^0.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-icons": "^5.3.0",
"zustand": "^5.0.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.1",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"electron-devtools-installer": "^3.2.0",
"electron-vite": "^2.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.3.2",
"vite": "^5.4.10"
}
}