-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
executable file
·48 lines (48 loc) · 1.41 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
{
"version": "2.0.0",
"name": "@mkellsy/homebridge-ui",
"displayName": "Homebridge UI",
"description": "This is a highly customized plugin for a single location.",
"author": "Michael Kellsy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mkellsy/homebridge-ui"
},
"homepage": "https://github.com/mkellsy/homebridge-cliffside",
"main": "lib/index.js",
"keywords": [
"homebridge-plugin"
],
"files": [
"/lib"
],
"scripts": {
"build": "npm run format && npm run lint && node ./build",
"lint": "eslint ./src/*.ts",
"format": "prettier --write .",
"watch": "npm run build && npm link && nodemon",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"homebridge": "^1.8.1"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/debug": "^4.1.12",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"colors": "^1.4.0",
"commander": "^10.0.1",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.3",
"js-logger": "^1.6.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}