generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"private": false,
"displayName": "Homebridge Wled Ws",
"name": "homebridge-wled-ws",
"version": "0.0.16",
"description": "WLED strips plugin for Homebridge",
"license": "Apache-2.0",
"author": "smhex <smhex@mailbox.org>",
"maintainers": [
"smhex"
],
"keywords": [
"homebridge-plugin",
"homebridge-wled-ws",
"wled",
"homebridge"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smhex/homebridge-wled-ws.git"
},
"bugs": {
"url": "https://github.com/smhex/homebridge-wled-ws/issues"
},
"engines": {
"node": "^18.17.0 || ^20.9.0",
"homebridge": "^1.7.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"wled-client": "^0.22.1"
},
"publishConfig": {
"@smhex:registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.45.0",
"homebridge": "^1.7.0",
"nodemon": "^3.0.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}