-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
{
"displayName": "SamsungTV Control",
"name": "homebridge-samsungtv-control",
"version": "2.1.0",
"description": "Homebridge Samsung TV plugin to control Samsung TV's",
"license": "MIT",
"author": "mmende",
"repository": {
"type": "git",
"url": "https://github.com/mmende/homebridge-samsungtv-control2.git"
},
"bugs": {
"url": "https://github.com/mmende/homebridge-samsungtv-control2/issues"
},
"files": [
"dist/*",
"config.schema.json",
"cli.js"
],
"engines": {
"node": ">=10.17.0",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"test": "jest"
},
"keywords": [
"homebridge-plugin",
"samsung",
"tv",
"upnp"
],
"dependencies": {
"chalk": "^4.1.1",
"commander": "^6.1.0",
"lodash.flatten": "^4.4.0",
"macfromip": "^1.1.1",
"node-persist": "^3.1.0",
"node-upnp": "^1.2.0",
"node-upnp-remote": "^1.2.0",
"samsung-remote-pin-paired": "^1.1.0",
"samsung-tv-control": "^1.12.3",
"ssdp-ts": "^3.2.6"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.11.2",
"@types/node-persist": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^6.12.0",
"homebridge": "^1.3.4",
"jest": "^26.4.2",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.3.4"
},
"bin": "./cli.js"
}