generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
54 lines (54 loc) · 1.4 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
{
"private": false,
"displayName": "SmartThings Plugin",
"name": "homebridge-smartthings-ik",
"version": "1.5.22",
"description": "Connects SmartThings devices to Homebridge. Automatically discovers devices.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/iklein99/homebridge-smartthings.git"
},
"bugs": {
"url": "https://github.com/iklein99/homebridge-smartthings/issues"
},
"engines": {
"node": ">=18.0.0",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin"
],
"dependencies": {
"homebridge-config-ui-x": "^4.51.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.46.0",
"homebridge": "^1.3.5",
"nodemon": "^3.0.0",
"rimraf": "^5.0.0",
"ts-node": "^10.3.0",
"typescript": "^5.0.0"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/iklein99"
},
{
"type": "venmo",
"url": "https://venmo.com/?txn=pay&audience=public&recipients=ira-klein-3"
}
]
}