forked from todbot/electron-hid-toy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "electron-hid-toy",
"version": "0.1.12",
"description": "Play with Electron and node-hid",
"main": "main.js",
"author": "Tod Kurt <todbotdotcom@gmail.com> (https://github.com/todbot)",
"license": "ISC",
"repository": "todbot/electron-hid-toy",
"scripts": {
"start": "electron . --enable-logging --remote-debugging-port=9222",
"dev": "cross-env NODE_ENV='development' npm run start",
"dist": "electron-builder .",
"dist-all": "build -owl --x64",
"build": "electron-builder .",
"reload": "live-reload app --port 35729",
"rebuild": "electron-rebuild",
"electron-rebuild": "electron-rebuild",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [
"hid",
"node-hid",
"usb",
"electron"
],
"build": {
"appId": "com.todbot.electron-hid-toy",
"asar": true,
"npmRebuild": true,
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"publish": {
"provider": "github"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "pkg/icon.icns"
},
"win": {
"target": "zip",
"icon": "pkg/icon.ico"
}
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.9.0",
"bootstrap": "^3.3.5",
"node-hid": "^0.7.9",
"react": "^0.14.8",
"react-bootstrap": "^0.28.5",
"react-dom": "^0.14.7"
},
"devDependencies": {
"cross-env": "^5.2.0",
"electron": "^6.0.0",
"electron-builder": "^21.2.0",
"electron-rebuild": "^1.8.5",
"node-abi": "^2.10.0"
}
}