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
97 lines (97 loc) · 2.6 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.6 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
{
"name": "web-audio-mastering",
"version": "1.3.4",
"description": "Desktop app for mastering AI-generated music (or any audio for that matter) to streaming-ready quality",
"homepage": "https://entrepeneur4lyf.github.io/Web-Audio-Mastering/",
"repository": {
"type": "git",
"url": "git+https://github.com/entrepeneur4lyf/Web-Audio-Mastering.git"
},
"bugs": {
"url": "https://github.com/entrepeneur4lyf/Web-Audio-Mastering/issues"
},
"main": "dist-electron/main.js",
"scripts": {
"start": "vite",
"dev": "vite",
"build:web": "vite build",
"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",
"test": "vitest run"
},
"keywords": [
"web audio api",
"audio",
"mastering",
"spotify",
"audio",
"electron",
"ai generated music",
"audio mastering",
"audio processing",
"audio editing",
"audio production",
"audio mixing",
"audio recording",
"audio editing software",
"audio production software",
"audio mastering software",
"audio processing software",
"audio editing tools",
"audio production tools",
"audio mastering tools",
"audio processing tools",
"audio editing software for windows",
"audio production software for windows",
"audio mastering software for windows",
"audio processing software for windows",
"audio editing software for mac",
"audio production software for mac",
"audio mastering software for mac",
"audio processing software for mac",
"audio editing software for linux",
"audio production software for linux",
"audio mastering software for linux",
"audio processing software for linux"
],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^4.0.18"
},
"build": {
"appId": "com.webaudio.mastering",
"productName": "Web Audio Mastering",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"win": {
"target": "portable",
"icon": "icon.png"
},
"mac": {
"target": "dmg",
"icon": "icon.png"
},
"linux": {
"target": "AppImage",
"icon": "icon.png"
}
},
"dependencies": {
"fft.js": "^4.0.4",
"wavesurfer.js": "^7.12.1"
}
}