forked from UltimateHackingKeyboard/agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.05 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "uhk-agent",
"private": true,
"author": "Ultimate Gadget Laboratories",
"main": "electron/dist/electron-main.js",
"version": "1.5.16",
"firmwareVersion": "8.10.12",
"deviceProtocolVersion": "4.7.0",
"userConfigVersion": "4.1.1",
"hardwareConfigVersion": "1.0.0",
"description": "Agent is the configuration application of the Ultimate Hacking Keyboard.",
"repository": {
"type": "git",
"url": "[email protected]:UltimateHackingKeyboard/agent.git"
},
"license": "See in LICENSE",
"engines": {
"node": ">=14.17.0 <15.0.0",
"npm": ">=v6.14.11 <7.0.0"
},
"devDependencies": {
"jasmine-ts": "0.4.0",
"@types/command-line-args": "5.0.0",
"@types/command-line-usage": "5.0.1",
"@types/copy-webpack-plugin": "8.0.0",
"@types/decompress": "4.2.3",
"@types/electron-devtools-installer": "2.0.2",
"@types/electron-settings": "3.0.0",
"@types/file-saver": "2.0.1",
"@types/fs-extra": "9.0.11",
"@types/jasmine": "3.10.0",
"@types/lodash": "4.14.168",
"@types/node": "14.14.37",
"@types/node-hid": "1.3.0",
"@types/request": "2.0.8",
"@types/semver": "7.3.4",
"@types/tmp": "0.2.0",
"@types/yargs": "16.0.1",
"check-node-version": "4.1.0",
"copy-webpack-plugin": "8.1.1",
"copyfiles": "2.4.1",
"core-js": "3.15.2",
"cross-env": "7.0.3",
"decompress": "4.2.1",
"decompress-targz": "^4.1.1",
"devtron": "1.4.0",
"electron": "13.2.1",
"electron-builder": "22.9.1",
"electron-debug": "1.5.0",
"electron-devtools-installer": "2.2.3",
"electron-log": "4.2.2",
"electron-notarize": "1.0.0",
"electron-settings": "3.1.4",
"electron-updater": "4.2.5",
"fs-extra": "10.0.0",
"jasmine": "3.10.0",
"jasmine-core": "3.10.0",
"lerna": "4.0.0",
"lodash": "4.17.21",
"node-hid": "2.1.1",
"npm-run-all": "4.1.5",
"nrf-intel-hex": "1.3.0",
"request": "2.88.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.20",
"stylelint": "13.13.1",
"svg-sprite": "1.5.3",
"ts-loader": "9.2.6",
"ts-node": "10.3.0",
"tslint": "6.1.3",
"typescript": "4.2.4",
"webpack": "5.59.0",
"webpack-cli": "4.9.1"
},
"scripts": {
"postinstall": "lerna bootstrap",
"test": "lerna run test",
"lint": "lerna run lint",
"e2e": "lerna run e2e --scope uhk-web",
"prebuild": "check-node-version --package",
"build": "lerna run build",
"build:web": "lerna run build:web --scope=uhk-web",
"server:web": "lerna exec --scope uhk-web npm start",
"server:electron": "lerna exec --scope uhk-web npm run server:renderer",
"electron": "lerna exec --scope uhk-agent npm start",
"electron:spe": "lerna exec --scope uhk-agent npm run electron:spe",
"pack": "node ./scripts/release.js",
"sprites": "node ./scripts/generate-svg-sprites",
"release": "node ./scripts/release.js",
"clean": "lerna exec rimraf ./node_modules ./dist && rimraf ./node_modules ./dist ./tmp",
"convert-user-config-to-bin": "node -r ts-node/register ./packages/usb/user-config-json-to-bin.ts"
}
}