-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
78 lines (78 loc) · 2.77 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
{
"name": "node-red-contrib-tplink-tapo-connect-api",
"version": "0.3.5",
"description": "Unofficial node-RED node for connecting to TP-Link Tapo devices. Currently limited to the P100 & P105 & P110 smart plugs and L510E smart bulbs.",
"author": "sanlike",
"license": "Apache",
"keywords": [
"node-red",
"tplink",
"p100",
"p105",
"p110",
"p115",
"L510E"
],
"main": "none",
"scripts": {
"test": "mocha \"src/nodes/test/*_spec.js\"",
"clean": "rimraf dist/*",
"tsc": "tsc",
"build": "npm-run-all clean tsc && npm run copy && npm run install:my-node",
"copy": "npm run copy:html && npm run copy:icons && npm run copy:locales && npm run copy:dist && npm run copy:nodes && npm run copy:package",
"copy:html": "cpx \"./src/nodes/*.html\" \"./dist\"",
"copy:icons": "cpx \"./src/nodes/icons/**/*\" \"./dist/icons\"",
"copy:locales": "cpx \"./src/nodes/locales/**/*\" \"./dist/locales\"",
"copy:dist": "cpx \"./dist/**/*\" \"./data/my-node/nodes\"",
"copy:nodes": "cpx \"./dist/**/*\" \"./nodes\"",
"copy:package": "cpx \"./package.json\" \"./data/my-node\"",
"install:my-node": "npm install ./data/my-node --prefix ./data",
"start": "node ./node_modules/node-red/red.js --port 1880 --userDir ./data",
"start:debug": "node --inspect-brk=0.0.0.0:9229 ./node_modules/node-red/red.js --userDir ./data"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"tplink_tapo_connect_api": "nodes/tplink_tapo_connect_api.js",
"tplink_command": "nodes/tplink_command.js",
"tplink_custom_request": "nodes/tplink_custom_request.js",
"tplink_brightness": "nodes/tplink_brightness.js",
"tplink_colour": "nodes/tplink_colour.js",
"tplink_status": "nodes/tplink_status.js",
"tplink_toggle": "nodes/tplink_toggle.js",
"tplink_turn_off": "nodes/tplink_turn_off.js",
"tplink_turn_on": "nodes/tplink_turn_on.js"
}
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"ansi-styles": "^6.1.0",
"arpping": "^4.0.0",
"local-devices": "^3.2.0",
"axios": "^0.27.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node-red": "^1.2.1",
"cpx": "^1.5.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"mocha": "^10.0.0",
"dotenv": "^16.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanlike0911/node-red-contrib-tplink-tapo-connect-api.git"
},
"bugs": {
"url": "https://github.com/sanlike0911/node-red-contrib-tplink-tapo-connect-api/issues"
},
"homepage": "https://github.com/sanlike0911/node-red-contrib-tplink-tapo-connect-api#readme"
}