-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.67 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
{
"name": "samplebuddy",
"version": "0.3.0",
"description": "Convert and organize audio samples for specific hardware samplers, then upload them to a correctly formatted removable drive.",
"main": "./out/main/index.js",
"author": "ShinTech Electronics",
"license": "MIT",
"private": true,
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"pack": "electron-vite build && electron-builder --dir",
"release": "electron-vite build && electron-builder --publish never"
},
"dependencies": {
"audify": "^1.10.1",
"ffmpeg-static": "^5.3.0",
"ffprobe-static": "^3.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"build": {
"appId": "com.shintech.samplebuddy",
"productName": "SampleBuddy",
"copyright": "ShinTech Electronics",
"npmRebuild": false,
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"requestedExecutionLevel": "asInvoker",
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"shortcutName": "SampleBuddy",
"createDesktopShortcut": false,
"createStartMenuShortcut": false,
"artifactName": "SampleBuddy-Setup-${version}.${ext}"
},
"publish": {
"provider": "github",
"owner": "ShinobiFPV",
"repo": "SampleBuddy"
},
"files": [
"out/**/*",
"!**/node_modules/audify/vendor/**",
"!**/node_modules/audify/build/**",
"**/node_modules/audify/build/Release/**"
],
"asarUnpack": [
"**/node_modules/ffmpeg-static/**",
"**/node_modules/ffprobe-static/**",
"**/node_modules/audify/build/Release/**"
],
"extraResources": [
{
"from": "native/vst-host/build/VstHost_artefacts/Release/SampleBuddy VST Host.exe",
"to": "vst-host/SampleBuddy VST Host.exe"
},
{
"from": "native/vst-host/LICENSE",
"to": "vst-host/LICENSE"
},
{
"from": "native/asio-control-panel/build/Release/SampleBuddy ASIO Control Panel.exe",
"to": "asio-control-panel/SampleBuddy ASIO Control Panel.exe"
},
{
"from": "native/asio-control-panel/LICENSE",
"to": "asio-control-panel/LICENSE"
}
]
}
}