-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 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
{
"name": "resourcify",
"private": true,
"version": "v1.0.1",
"author": {
"name": "xakep8",
"email": "[email protected]"
},
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "npm-run-all --parallel dev:react dev:electron",
"dev:react": "vite",
"dev:electron": "npm run transpile:electron; cross-env NODE_ENV=development electron .",
"build": "tsc -b && vite build",
"preview": "vite preview",
"transpile:electron": "tsc --project src/electron/tsconfig.json",
"dist:mac": "npm run transpile:electron && npm run build && electron-builder --mac --universal --publish always",
"dist:linux": "npm run transpile:electron && npm run build && electron-builder --linux --x64 --publish always",
"dist:win": "npm run transpile:electron && npm run build && electron-builder --win --x64 --publish always"
},
"dependencies": {
"@types/recharts": "^1.8.29",
"eslint": "^9.13.0",
"os-utils": "^0.0.14",
"preact": "^10.24.1",
"recharts": "^2.13.0",
"sudo-prompt": "^9.2.1"
},
"devDependencies": {
"@preact/preset-vite": "^2.9.1",
"@types/os-utils": "^0.0.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"electron": "^33.0.2",
"electron-builder": "^25.1.8",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.5.3",
"vite": "^5.4.8"
}
}