-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "gain-booster",
"version": "0.0.6",
"description": "Gain VST plugin",
"main": "dist/index.js",
"scripts": {
"start": "rsbuild dev",
"build": "npm run clean && npm run embed-binary && npm run cmake",
"embed-binary": "rsbuild build && (node -e \"process.exit(process.platform === 'win32' ? 0 : 1)\" && embed-binary.bat || ./embed-binary.sh)",
"cmake": "cmake -B build -DCMAKE_BUILD_TYPE=Release -DWEBVIEW_DEV_MODE=0 && cmake --build build --config Release",
"clean": "del-cli ./dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Moebytes/Gain-Booster"
},
"author": "Moebytes",
"license": "CC BY-NC 4.0",
"overrides": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"dependencies": {
"juce-framework-frontend-mirror": "^8.0.8-rc.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-knob-headless": "0.4.0"
},
"devDependencies": {
"@rsbuild/core": "^1.4.8",
"@rsbuild/plugin-react": "^1.3.4",
"@rsbuild/plugin-sass": "^1.3.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"del-cli": "^7.0.0",
"sass": "^1.89.2"
}
}