-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
84 lines (84 loc) · 2.8 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
{
"name": "uhk-agent",
"private": true,
"author": "Ultimate Gadget Laboratories",
"main": "electron/dist/electron-main.js",
"version": "5.0.1",
"firmwareVersion": "12.1.0",
"deviceProtocolVersion": "4.11.0",
"userConfigVersion": "8.3.0",
"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": ">=20.18.1 <21.0.0",
"npm": ">=10.8.2 <11.0.0"
},
"devDependencies": {
"@lerna/legacy-package-management": "8.1.9",
"@types/command-line-args": "5.2.3",
"@types/command-line-usage": "5.0.4",
"@types/decompress": "4.2.7",
"@types/file-saver": "2.0.7",
"@types/jasmine": "5.1.4",
"@types/lodash": "4.17.10",
"@types/node": "20.17.10",
"@types/tmp": "0.2.6",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"check-node-version": "4.2.1",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"decompress": "4.2.1",
"decompress-targz": "^4.1.1",
"desm": "1.3.0",
"electron": "33.3.0",
"electron-builder": "25.1.8",
"electron-log": "4.4.8",
"electron-settings": "4.0.4",
"electron-updater": "6.3.9",
"eslint": "8.57.0",
"fs-extra": "11.2.0",
"jasmine": "5.3.1",
"lerna": "8.1.9",
"lodash": "4.17.21",
"node-hid": "3.1.2",
"npm-run-all": "4.1.5",
"nrf-intel-hex": "1.3.0",
"postcss-scss": "4.0.9",
"rimraf": "6.0.1",
"serialport": "12.0.0",
"source-map-support": "0.5.21",
"stylelint": "15.11.0",
"svg-sprite": "2.0.4",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsx": "4.9.1",
"typescript": "5.3.3",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"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 run clean && rimraf ./node_modules ./dist ./tmp",
"convert-user-config-to-bin": "cross-env TS_NODE_PROJECT=./packages/usb/tsconfig.json node --loader ts-node/esm ./packages/usb/user-config-json-to-bin.ts"
}
}