-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.82 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.82 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mifarelab",
"private": true,
"version": "0.0.0",
"main": "electron/electron.js",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"serve": "vite preview",
"electron": "wait-on tcp:3000 && cross-env IS_DEV=true electron .",
"electron:pack": "electron-builder --dir",
"electron:dev": "concurrently -k \"cross-env BROWSER=none npm run dev\" \"npm run electron\"",
"electron:builder": "electron-builder",
"build:for:electron": "cross-env ELECTRON=true IS_DEV=false vite build",
"app:build": "npm run build:for:electron && npm run electron:builder"
},
"dependencies": {
"@tailwindcss/vite": "^4.0.15",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.15",
"wait-on": "^8.0.3"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^35.0.3",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"vite": "^6.2.0"
},
"build": {
"appId": "com.itasimo.mifarelab",
"productName": "MifareLab",
"copyright": "Copyright © 2025 Simone Palermo",
"icon": "public/Icon/icon.png",
"mac": {
"category": "public.app-category.utilities"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"directories": {
"buildResources": "assets",
"output": "dist_electron"
},
"extends": null,
"extraResources": [
{
"from": "dist",
"to": "app/dist"
}
]
}
}