-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.42 KB
/
package.json
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
{
"name": "MIDIWRITER",
"version": "0.0.1",
"description": "",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"dist": "electron-builder"
},
"author": "Jida Han",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"easymidi": "^3.1.0",
"electron": "^11.0.0",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9",
"html-webpack-plugin": "^5.6.0",
"iohook": "^0.9.3",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"redux": "^5.0.1",
"style-loader": "^3.3.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3"
},
"iohook": {
"targets": [
"electron-85"
],
"platforms": [
"darwin"
],
"arches": [
"arm64",
"x64"
]
},
"dependencies": {
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"easymidi": "^3.1.0",
"iohook": "^0.9.3"
},
"build": {
"appId": "com.jidagraphy.midiwriter",
"productName": "MIDIWRITER",
"asar": true,
"mac": {
"target": [
"dmg"
],
"icon" : "./dist/icon.png"
}
},
"dmg": {
"title": "MIDIWRITER",
"window": {
"width": 660,
"height": 400
}
}
}