-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 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
{
"name": "arctis-monitor",
"productName": "Arctis Monitor",
"version": "0.0.14",
"description": "Monitor your Arctis headphones for charging status",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc -w",
"start": "npm run build && electron-forge start",
"package": "npm run build && electron-forge package",
"make": "npm run build && electron-forge make",
"publish": "npm run build && electron-forge publish",
"update-deps": "ncu -u && npm install"
},
"main": "./dist/main.js",
"keywords": [
"arctis",
"steelseries",
"headphones",
"tray",
"battery"
],
"author": "Richard Race",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-dmg": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/publisher-github": "^7.4.0",
"@types/node-hid": "^1.3.4",
"@types/winreg": "^1.2.36",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"electron": "^31.2.1",
"electron-packager": "^17.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"node-abi": "^3.65.0",
"npm-check-updates": "^16.14.20",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"arctis-usb-finder": "^0.0.23",
"electron-squirrel-startup": "^1.0.1",
"winreg": "^1.2.5"
}
}