-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.21 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
{
"name": "mutag",
"private": true,
"version": "0.0.3",
"type": "module",
"main": "out/main/index.js",
"scripts": {
"build": "electron-vite build",
"dev": "electron-vite dev",
"dist": "npm run build && electron-builder --win portable",
"pack": "npm run build && electron-builder --dir",
"postinstall": "electron --version",
"preview": "electron-vite preview"
},
"build": {
"appId": "com.mutag.app",
"productName": "mutag",
"directories": {
"output": "release"
},
"files": [
"out/**/*",
"package.json"
],
"asarUnpack": [
"node_modules/node-taglib-sharp/**/*"
],
"win": {
"icon": "assets/icon/icon.png",
"target": [
"portable"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"dependencies": {
"lucide-react": "0.487.0",
"node-taglib-sharp": "6.0.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@tailwindcss/vite": "4.1.12",
"@vitejs/plugin-react": "4.7.0",
"electron": "42.4.0",
"electron-builder": "26.0.12",
"electron-vite": "4.0.0",
"tailwindcss": "4.1.12",
"vite": "6.3.5"
}
}