-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.45 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.45 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
{
"name": "@homebridge-plugins/homebridge-august",
"displayName": "August",
"type": "module",
"version": "3.2.2",
"description": "The August plugin allows you to access your August & Yale device(s) from HomeKit.",
"author": {
"name": "donavanbecker",
"url": "https://github.com/donavanbecker"
},
"license": "ISC",
"funding": [
{
"type": "Paypal",
"url": "https://paypal.me/donavanbecker"
},
{
"type": "GitHub",
"url": "https://github.com/sponsors/donavanbecker"
}
],
"homepage": "https://github.com/homebridge-plugins/homebridge-august",
"maintainers": [
"donavanbecker"
],
"repository": {
"type": "git",
"url": "https://github.com/homebridge-plugins/homebridge-august.git"
},
"bugs": {
"url": "https://github.com/homebridge-plugins/homebridge-august/issues"
},
"keywords": [
"homebridge-plugin",
"august",
"yale",
"lock"
],
"main": "dist/index.js",
"engines": {
"homebridge": "^2.0.0",
"node": "^22 || ^24"
},
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src --no-warn-ignored",
"lint:fix": "eslint src --fix --no-warn-ignored",
"watch": "npm run build && npm run plugin-ui && npm link && nodemon",
"plugin-ui": "rsync ./src/homebridge-ui/public/index.html ./dist/homebridge-ui/public/",
"build": "npm run clean && tsc && npm run plugin-ui && cp package.json dist/package.json || true",
"prepublishOnly": "npm run lint && npm run build && npm run plugin-ui && npm run docs && npm run docs:lint",
"postpublish": "npm run clean && npm ci",
"clean": "shx rm -rf ./dist",
"test": "vitest run",
"test:watch": "vitest watch",
"test-coverage": "npm run test -- --coverage",
"docs": "typedoc",
"docs:lint": "typedoc --emit none --treatWarningsAsErrors"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^2.2.3",
"august-yale": "^1.2.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.3.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-perfectionist": "^5.8.0",
"eslint-plugin-unused-imports": "^4.4.1",
"homebridge": "^2.0.0",
"nodemon": "^3.1.14",
"shx": "^0.4.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}