-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.21 KB
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
{
"name": "arctics-status",
"version": "0.3.0",
"description": "Shows Steel Series Arctics device status in system tray",
"private": true,
"main": "./dist/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"tsc": "tsc",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"watch": "run-p watch:*",
"start": "run-s tsc start:electron",
"build": "run-s tsc build:dist",
"release": "run-s tsc release:dist",
"start:electron": "electron ./dist/main.js",
"watch:tsc": "tsc -w",
"watch:electron": "nodemon --watch dist --exec \"./node_modules/.bin/electron .\"",
"build:dist": "electron-builder --win",
"release:dist": "electron-builder --win --publish always"
},
"author": "infodusha",
"license": "Apache-2.0",
"devDependencies": {
"@types/node-hid": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"electron": "^17.1.0",
"electron-builder": "^22.14.13",
"eslint": "^8.10.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/auto-launch": "^5.0.2",
"auto-launch": "^5.0.5",
"node-hid": "^2.1.1"
}
}