-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.77 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
{
"name": "mic-processor-pro",
"version": "1.0.0",
"description": "Professional Microphone Audio Processor with VST and RNNoise support",
"main": "main.js",
"author": "Your Name",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"electron": "electron .",
"start": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"dist": "npm run build && electron-builder --win",
"dist:portable": "npm run build && electron-builder --win portable"
},
"build": {
"appId": "com.micprocessor.pro",
"productName": "Mic Processor Pro",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"node_modules/@timephy/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"portable": {
"artifactName": "MicProcessorPro-Portable.exe"
}
},
"dependencies": {
"@timephy/rnnoise-wasm": "^1.0.0",
"auto-launch": "^5.0.6",
"lucide-react": "^0.556.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rnnoise-wasm": "^0.0.1-security",
"soundtouchjs": "^0.2.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"electron": "^28.0.0",
"electron-builder": "^26.0.12",
"vite": "^5.0.0",
"wait-on": "^7.2.0"
}
}