-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.33 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
66
67
68
69
70
{
"name": "homebridge-nest-accfactory",
"displayName": "Nest Accfactory",
"type": "module",
"version": "0.2.6-alpha.3",
"description": "Homebridge support for Nest/Google devices including HomeKit Secure Video (HKSV) support for doorbells and cameras",
"author": "n0rt0nthec4t",
"license": "Apache-2.0",
"homepage": "https://github.com/n0rt0nthec4t/homebridge-nest-accfactory/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/n0rt0nthec4t/homebridge-nest-accfactory.git"
},
"bugs": {
"url": "https://github.com/n0rt0nthec4t/homebridge-nest-accfactory/issues"
},
"funding": "https://github.com/n0rt0nthec4t/homebridge-nest-accfactory?sponsor=1",
"keywords": [
"homekit",
"homebridge-plugin",
"homebridge",
"hksv",
"homekit secure video",
"nest",
"google",
"doorbell",
"camera",
"thermostat",
"temperature",
"smoke",
"sensor",
"floodlight"
],
"main": "dist/index.js",
"engines": {
"node": "^20.17.0 || ^22.9.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"files": [
"LICENSE",
"dist/**/*",
"config.schema.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rimraf ./dist*",
"format": "prettier --write src/*.js src/**/*.js src/**/*.mjs",
"lint": "eslint src/*.js src/**/*.js src/**/*.mjs --max-warnings=20",
"build": "npm run clean && copyfiles -u 1 src/*.js dist && copyfiles -u 2 src/HomeKitDevice/*.js dist && copyfiles -u 2 src/HomeKitHistory/*.js dist && copyfiles -u 1 src/res/*.h264 dist && copyfiles -u 1 src/res/*.jpg dist && copyfiles -u 1 'src/protobuf/**/*.proto' dist",
"prepublishOnly": "npm run lint && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/node": "^22.10.7",
"@typescript-eslint/parser": "^8.20.0",
"copyfiles": "^2.4.1",
"eslint": "^9.18.0",
"homebridge": "^2.0.0-beta.0",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"rimraf": "^6.0.1"
},
"dependencies": {
"protobufjs": "^7.4.0",
"ws": "^8.18.0",
"werift": "^0.21.10"
}
}