-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·117 lines (117 loc) · 2.88 KB
/
package.json
File metadata and controls
executable file
·117 lines (117 loc) · 2.88 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "Gharmonize",
"version": "1.2.5",
"description": "Gharmonize is a desktop application that brings together third-party tools from various platforms to help you build and manage your local music library.",
"author": "G-grbz <[email protected]>",
"type": "module",
"main": "electron/main.mjs",
"scripts": {
"start": "cross-env ENV_DEFAULT_PATH= ENV_USER_PATH= DATA_DIR= node app.js",
"dev": "cross-env ENV_DEFAULT_PATH= ENV_USER_PATH= DATA_DIR= nodemon app.js",
"desktop:dev": "wait-on tcp:127.0.0.1:5174 && electron .",
"desktop:build:nsis": "electron-builder --win nsis --x64",
"download:binaries": "node scripts/download-binaries.mjs",
"desktop:build:appimage": "electron-builder --linux AppImage --x64",
"desktop:build:portable": "electron-builder --win portable --x64",
"desktop:build:all": "npm run desktop:build:nsis && npm run desktop:build:portable",
"postinstall": "node ./scripts/postinstall.cjs"
},
"dependencies": {
"archiver": "^7.0.1",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"multer": "^2.0.2",
"music-metadata": "^11.9.0",
"node-fetch": "^3.3.2",
"node-id3": "^0.2.9",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"electron": "^39.1.1",
"electron-builder": "^26.0.12",
"nodemon": "^3.1.10",
"wait-on": "^8.0.2"
},
"overrides": {
"lodash": "4.18.1"
},
"build": {
"appId": "com.gharmonize.app",
"productName": "Gharmonize",
"executableName": "gharmonize",
"icon": "build/icon.ico",
"asar": true,
"directories": {
"buildResources": "build"
},
"files": [
"bootstrap.mjs",
"electron/**",
"app.js",
"routes/**",
"modules/**",
"public/**",
".env.default",
"config.js",
"package.json",
"cookies/**",
"uploads/**",
"outputs/**",
"temp/**",
"build/**"
],
"extraResources": [
{
"from": "build/bin",
"to": "bin",
"filter": [
"**/*"
]
},
{
"from": "build/icon.png",
"to": "icon.png"
},
{
"from": "build/icon.ico",
"to": "icon.ico"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"artifactName": "Gharmonize Setup ${version}.${ext}"
},
"linux": {
"target": [
"AppImage"
],
"icon": "build/icon.png",
"desktop": {
"entry": {
"Name": "Gharmonize",
"StartupWMClass": "Gharmonize"
}
}
},
"mac": {
"target": [
"dmg"
],
"icon": "build/icon.icns"
}
}
}