-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"private": false,
"displayName": "TP-Link Access Control",
"name": "homebridge-tp-link-access-control",
"version": "1.0.7",
"description": "This plugin allows you to block specific devices from accessing the internet using your TP-Link router.",
"license": "Apache-2.0",
"author": "Jason Grimard",
"repository": {
"type": "git",
"url": "https://github.com/jgrimard/homebridge-tp-link-access-control.git"
},
"bugs": {
"url": "https://github.com/jgrimard/homebridge-tp-link-access-control/issues"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"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",
"homebridge",
"tp-link",
"tplink",
"block",
"internet",
"access",
"devices",
"router",
"wifi",
"wireless",
"network",
"parental control",
"access control",
"access-control"
],
"devDependencies": {
"@types/node": "^16.18.36",
"@types/node-fetch": "^2.6.4",
"@types/node-forge": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"homebridge": "^1.3.5",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"node-forge": "^1.3.1",
"node-fetch": "2.6.11"
}
}