-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
{
"name": "homebridge-lacrosseview",
"displayName": "Homebridge La Crosse View",
"version": "2.0.0",
"type": "module",
"description": "Homebridge Plugin providing La Crosse View sensors support",
"main": "build/index.js",
"files": [
"build",
"config.schema.json"
],
"author": "Guillaume Hertault <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/GuiHash/homebridge-lacrosseview.git"
},
"bugs": {
"url": "https://github.com/GuiHash/homebridge-lacrosseview/issues"
},
"engines": {
"node": "^18.20.4 || ^20.18.0 || ^22.10.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"scripts": {
"lint": "eslint src --max-warnings 0",
"watch": "npm link && nodemon",
"test": "vitest",
"build": "tsc",
"prepublishOnly": "npm run lint && npm run build",
"prettier:fix": "prettier --write '**/*.{ts,js,jsx,json,md,css,scss,sh,yml,yaml,html}'",
"semantic-release": "semantic-release"
},
"keywords": [
"homebridge-plugin",
"la crosse technology",
"la crosse view"
],
"dependencies": {
"fakegato-history": "^0.6.5",
"got": "^14.4.5",
"lru-cache": "^11.0.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@types/node": "^22.10.5",
"@typescript-eslint/parser": "^8.19.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"homebridge": "^2.0.0-beta.0",
"msw": "^2.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^2.1.8"
}
}