-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.04 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.04 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
98
99
{
"name": "openstudio-daw",
"main": "electron/main.mjs",
"private": true,
"version": "1.0.1",
"description": "OpenStudio is a browser and desktop DAW built with React, Web Audio API, and Electron.",
"author": "808StaN",
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"refresh:packs": "node scripts/generate-packs-manifest.mjs",
"predev": "npm run refresh:packs",
"prebuild": "npm run refresh:packs",
"dev": "vite",
"build": "vite build",
"build:desktop": "vite build --base ./",
"desktop:dev": "node scripts/electron-dev.mjs",
"installer:assets": "node scripts/generate-installer-assets.mjs",
"desktop:pack": "npm run build:desktop && electron-builder --win --dir --config.win.signAndEditExecutable=false && node scripts/patch-windows-exe-icon.mjs",
"desktop:start": "npm run desktop:pack && start \"\" \".\\release\\win-unpacked\\OpenStudio.exe\"",
"desktop:installer": "npm run desktop:pack && npm run installer:assets && electron-builder --win nsis --prepackaged release/win-unpacked --config.win.signAndEditExecutable=false",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@breezystack/lamejs": "^1.2.7",
"@reduxjs/toolkit": "^2.11.2",
"@supabase/supabase-js": "^2.104.1",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-redux": "^9.2.0",
"react-rnd": "^10.5.3",
"soundfont-player": "^0.12.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"electron": "^41.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"jsdom": "^29.1.1",
"rcedit": "^4.0.1",
"vite": "^8.0.1",
"vitest": "^4.1.5"
},
"build": {
"appId": "com.openstudio.app",
"productName": "OpenStudio",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"!dist/packs/**",
"electron/**/*",
"package.json"
],
"extraFiles": [
{
"from": "dist/packs",
"to": "Packs",
"filter": [
"**/*",
"!**/manifest.json"
]
}
],
"win": {
"target": [
"dir"
],
"icon": "public/favicon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"runAfterFinish": true,
"installerLanguages": "en_US",
"multiLanguageInstaller": false,
"language": "1033",
"installerIcon": "public/favicon.ico",
"uninstallerIcon": "public/favicon.ico",
"installerHeaderIcon": "public/favicon.ico",
"installerSidebar": "build/installerSidebar.bmp",
"uninstallerSidebar": "build/uninstallerSidebar.bmp"
}
}
}