-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.89 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
71
72
73
74
75
76
77
78
79
{
"name": "flowkey-scraper",
"description": "Scrape sheet music from the service flowkey",
"author": {
"name": "Andrew McOlash"
},
"version": "0.11.0",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/amcolash/flowkey-scraper.git"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "npm run compile && electron-builder",
"dist:dir": "npm run dist --dir -c.compression=store -c.mac.identity=null",
"dist:linux": "electron-builder build --linux",
"dist:mac": "electron-builder build --mac",
"dist:win": "electron-builder build --win",
"release": "npm run dist"
},
"dependencies": {
"axios": "^0.21.1",
"electron-updater": "^4.3.9",
"extract-zip": "^2.0.1",
"jimp": "^0.16.1",
"jspdf": "^2.3.1",
"opencv4js": "^3.4.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"spinners-react": "^1.0.4",
"typestyle": "^2.1.0"
},
"devDependencies": {
"@babel/preset-react": "^7.13.13",
"electron": "^11.4.6",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.2.0",
"electron-webpack": "^2.8.2",
"webpack": "^4.46.0",
"webpack-build-notifier": "^2.2.1"
},
"build": {
"appId": "com.amcolash.flowkey-scraper",
"productName": "Flowkey Scraper",
"linux": {
"category": "AudioVideo",
"target": [
"AppImage"
]
},
"mac": {
"target": [
"dmg"
]
},
"win": {
"target": [
"nsis",
"portable"
]
}
},
"electronWebpack": {
"main": {
"extraEntries": [
"@/preload.js"
]
},
"renderer": {
"webpackConfig": "webpack.renderer.additions.js"
}
}
}