forked from entrepeneur4lyf/Web-Audio-Mastering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "web-audio-mastering",
"version": "1.3.1",
"description": "Desktop app for mastering AI-generated music to streaming-ready quality",
"main": "dist-electron/main.js",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build && electron-builder",
"build:win": "vite build && electron-builder --win",
"build:mac": "vite build && electron-builder --mac",
"build:linux": "vite build && electron-builder --linux",
"preview": "vite preview"
},
"keywords": [
"audio",
"mastering",
"spotify",
"electron"
],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^23.0.6",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6"
},
"build": {
"appId": "com.webaudio.mastering",
"productName": "Web Audio Mastering",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"win": {
"target": "portable",
"icon": "logo-icon.png"
},
"mac": {
"target": "dmg",
"icon": "logo-icon.png"
},
"linux": {
"target": "AppImage",
"icon": "logo-icon.png"
}
},
"dependencies": {
"wavesurfer.js": "^7.12.1"
}
}