-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
60 lines (60 loc) · 1.95 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": "litra",
"version": "0.0.0-development",
"description": "A driver for controlling Logitech Litra devices connected via USB, including the Logitech Litra Glow and Logitech Litra Beam, from a CLI or your JavaScript code",
"main": "./dist/commonjs/driver.js",
"module": "./dist/esm/driver.js",
"homepage": "https://github.com/timrogers/litra",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "npx tsc -p tsconfig.json && tsc -p tsconfig-commonjs.json",
"prepublish": "npm run build",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"semantic-release": "semantic-release"
},
"author": "Tim Rogers <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"node-hid": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node-hid": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.0.3",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/timrogers/litra.git"
},
"release": {
"branches": [
"main"
]
},
"bin": {
"litra-on": "./dist/commonjs/cli/litra-on.js",
"litra-off": "./dist/commonjs/cli/litra-off.js",
"litra-toggle": "./dist/commonjs/cli/litra-toggle.js",
"litra-oversight": "./dist/commonjs/cli/litra-oversight.js",
"litra-brightness": "./dist/commonjs/cli/litra-brightness.js",
"litra-brightness-lm": "./dist/commonjs/cli/litra-brightness-lm.js",
"litra-temperature-k": "./dist/commonjs/cli/litra-temperature-k.js",
"litra-identify": "./dist/commonjs/cli/litra-identify.js",
"litra-devices": "./dist/commonjs/cli/litra-devices.js"
}
}