-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.35 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.35 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"displayName": "Blink Security",
"name": "@jackietreeh0rn/homebridge-blink-security",
"version": "1.9.1",
"description": "Homebridge plugin for Amazon Blink security cameras",
"keywords": [
"homebridge",
"homebridge-plugin",
"hap",
"homekit",
"blink",
"blink-security",
"security-camera",
"amazon-blink"
],
"license": "GPL-3.0-or-later",
"author": "Rob",
"repository": {
"type": "git",
"url": "git+https://github.com/BitWise-0x/homebridge-blink-security.git"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^18.20.4 || ^20.18.0 || ^22.10.0 || ^24.0.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"files": [
"src",
"dist",
"config.example.json",
"config.schema.json",
"CHANGELOG.md"
],
"scripts": {
"prettier": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint src/**.ts",
"lint:fix": "eslint src/**.ts --fix",
"clean": "rimraf ./dist",
"compile": "tsc",
"build": "npm-run-all clean compile",
"watch": "npm run dev-setup && npm run build && npm link && nodemon",
"prepublishOnly": "npm-run-all prettier lint build",
"semantic-release": "cross-env semantic-release --no-ci",
"release": "npm-run-all build semantic-release",
"test": "vitest run --reporter=verbose",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky",
"tsc": "tsc --noEmit",
"dev-setup": "npm run setup-config && npm run setup-log",
"setup-config": "if [ ! -f ./test/hbConfig/config.json ]; then cp ./test/hbConfig/config-template.json ./test/hbConfig/config.json; fi",
"setup-log": "touch $(pwd)/test/hbConfig/homebridge.log && sed -i '' \"s|<log_file>|$(pwd)/test/hbConfig/homebridge.log|g\" $(pwd)/test/hbConfig/config.json"
},
"dependencies": {
"@homebridge/camera-utils": "^3.0.0",
"axios": "^1.7.9",
"ffmpeg-for-homebridge": "^2.1.1"
},
"overrides": {
"fastify": "^5.8.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "^4.1.4",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"homebridge": "^2.0.0-beta.23",
"homebridge-config-ui-x": "^5.0.0-beta.35",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"semantic-release": "^25.0.3",
"typescript": "^5.7.2",
"vitest": "^4.1.4"
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/BitWise-0x/homebridge-blink-security/issues"
},
"homepage": "https://github.com/BitWise-0x/homebridge-blink-security#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/BitWise-0x"
}
}