This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.98 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
{
"displayName": "Nest Accfactory",
"name": "nest-accfactory",
"homepage": "https://github.com/n0rt0nthec4t/Nest_accfactory",
"version": "0.1.9-alpha.2",
"description": "HomeKit integration for Nest devices using HAP-NodeJS library",
"license": "Apache-2.0",
"author": "n0rt0nthec4t",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/n0rt0nthec4t/Nest_accfactory.git"
},
"bugs": {
"url": "https://github.com/n0rt0nthec4t/Nest_accfactory/issues"
},
"engines": {
"node": "^18.20.4 || ^20.16.0 || ^22.6.0",
"hap-nodejs": "^1.1.0"
},
"main": "dist/index.js",
"files": [
"LICENSE",
"dist/**/*",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rimraf ./dist",
"format": "prettier --write src/**/*.js",
"lint": "eslint src/**/*.js --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "npm run clean && copyfiles -u 1 src/*.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"
},
"keywords": [
"hksv",
"hap-nodejs",
"nest",
"doorbell",
"camera",
"thermostat",
"temperature",
"smoke",
"sensor",
"floodlight"
],
"devDependencies": {
"@eslint/js": "^9.11.1",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/node": "^20.16.0",
"@typescript-eslint/parser": "^8.7.0",
"copyfiles": "^2.4.1",
"eslint": "^9.11.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"rimraf": "^6.0.1"
},
"dependencies": {
"hap-nodejs": "^1.1.0",
"chalk": "^5.3.0",
"protobufjs": "^7.4.0",
"ws": "^8.18.0",
"werift": "^0.20.0"
}
}