generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.89 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"displayName": "Homebridge Shortcuts Buttons",
"name": "homebridge-shortcuts-buttons",
"version": "3.5.3",
"description": "Run any Apple Shortcut with just the tap of a button, and execute a custom unix command (or another shortcut!) after completion to handle its success/failure, using x-callback-url.",
"license": "Apache-2.0",
"author": "duddu",
"repository": {
"type": "git",
"url": "git+https://github.com/duddu/homebridge-shortcuts-buttons.git"
},
"homepage": "https://github.com/duddu/homebridge-shortcuts-buttons#readme",
"bugs": {
"url": "https://github.com/duddu/homebridge-shortcuts-buttons/issues"
},
"engines": {
"node": "^18.20.4 || ^20.16.0 || ^22.6.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint src/**/*.ts",
"test": "jest --verbose --silent --forceExit --detectOpenHandles --no-cache",
"test:watch": "npm run test -- --watch --no-coverage",
"test:quiet": "npm run test -- --verbose false --no-coverage",
"convertSchema": "tsx ./bin/convertSchema.ts",
"bundle": "rimraf ./dist && tsc && cp -R ./src/bin ./dist",
"build": "npm run convertSchema && npm run bundle",
"link": "npm run build && npm link",
"watch": "npm run link && nodemon",
"prettier": "prettier --log-level warn --write .",
"typedoc": "typedoc --placeInternalsInOwningModule --mergeModulesMergeMode module",
"prepare": "husky",
"release": "semantic-release",
"prepublishOnly": "npm audit signatures && npm run lint && npm run test:quiet && npm run build"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@jest/globals": "^29.7.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.16.0",
"homebridge": "^2.0.0-beta.23",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.3",
"lodash": "^4.17.21",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typedoc": "^0.27.4",
"typedoc-plugin-merge-modules": "^6.1.0",
"typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "^5.7.2"
},
"overrides": {
"npm": ">=10.6"
},
"keywords": [
"apple-home",
"apple-shortcuts",
"homebridge",
"homebridge-plugin",
"homekit",
"x-callback-url"
]
}