-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.02 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
{
"name": "samplepad-editor",
"productName": "SamplePad Kit Editor",
"description": "Build drum kits for the Alesis SamplePad",
"author": "Ryan Bateman",
"version": "0.8.0",
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"build": "vite build",
"pack": "vite build && electron-builder build --mac",
"pack:win": "vite build && electron-builder build --win --x64",
"pack:linux": "vite build && electron-builder build --linux --x64",
"pack:all": "vite build && electron-builder build --mac --win --linux --x64"
},
"build": {
"appId": "com.electron.samplepadeditor",
"productName": "SamplePad Kit Editor",
"files": [
"build/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.music",
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "tar.gz",
"arch": [
"x64"
]
}
],
"category": "Audio"
}
},
"dependencies": {
"electron-store": "^11.0.2",
"immutability-helper": "^3.1.1",
"rc-slider": "^11.1.7",
"react": "^19.2.4",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.4",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"uuid": "^13.0.0",
"wavefile": "^11.0.0",
"webmidi": "^3.1.14"
},
"devDependencies": {
"buffer": "^6.0.3",
"concurrently": "^9.2.1",
"electron": "^40.6.0",
"electron-builder": "^26.15.2",
"sass": "^1.86.0",
"vite": "^7.3.1",
"wait-on": "^9.0.4"
},
"overrides": {
"minimatch": "^10.2.1"
}
}