This repository has been archived by the owner on Jun 19, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
65 lines (65 loc) · 1.49 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
{
"name": "qmk-flasher",
"productName": "QMK Flasher",
"version": "0.5.3rc1",
"description": "GUI app to load firmware onto QMK Keyboards.",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"postinstall": "install-app-deps; electron-rebuild --force",
"pack": "build",
"dist": "build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qmk/qmk_flasher.git"
},
"keywords": [
"dfu-programmer",
"dfu",
"keyboard",
"mechanical keyboard",
"qmk",
"qmk-flasher"
],
"author": "Jack Humbert",
"license": "MIT",
"bugs": {
"url": "https://github.com/qmk/qmk_flasher/issues"
},
"homepage": "https://github.com/qmk/qmk_flasher",
"dependencies": {
"bootbox": "~4.4",
"bootstrap": "~3.3",
"chokidar": "~1.7",
"electron-debug": "~1.1",
"electron-settings": "~3.1",
"jquery": "~2.2",
"node-hid": "~0.5",
"usb": "~1.2"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^1.6.10",
"electron-builder": "^18.3.5",
"electron-rebuild": "^1.0.2"
},
"build": {
"appId": "com.github.qmk-flasher",
"fileAssociation": [
{
"ext": "hex",
"description": "Atmel Firmware File",
"role": "Viewer"
}
],
"forceCodeSigning": false,
"mac": {
"category": "public.app-category.utilities",
"target": "zip"
},
"win": {
"iconUrl": "https://github.com/qmk/qmk_flasher/blob/master/build/windows.ico?raw=true"
}
}
}