-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.99 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
{
"name": "node-red-contrib-alice-self-hosting",
"version": "0.2.4",
"description": "Node-RED nodes to Yandex Alice devices in Self-Hosting",
"homepage": "https://github.com/twocolors/node-red-contrib-alice-self-hosting",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/twocolors/node-red-contrib-alice-self-hosting.git"
},
"bugs": {
"url": "https://github.com/twocolors/node-red-contrib-alice-self-hosting/issues"
},
"author": "D",
"scripts": {
"build": "npx tsc --build",
"build:clean": "npm run clean && npm run build",
"clean": "rm -rf tsconfig.tsbuildinfo build/**/*.js build/**/*.js.map build/**/*.d.ts",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix"
},
"node-red": {
"version": ">=2.2.0",
"nodes": {
"service": "build/nodes/service.js",
"device": "build/nodes/device.js",
"onoff": "build/nodes/onoff.js",
"toggle": "build/nodes/toggle.js",
"range": "build/nodes/range.js",
"color": "build/nodes/color.js",
"mode": "build/nodes/mode.js",
"sensor": "build/nodes/sensor.js",
"event": "build/nodes/event.js",
"video": "build/nodes/video.js"
}
},
"dependencies": {
"axios": "1.7.9",
"axios-retry": "4.5.0",
"nano-cache": "1.1.2",
"express": "4.21.2",
"body-parser": "1.20.3",
"morgan-body": "2.6.9"
},
"devDependencies": {
"@types/node": "^22.4.1",
"@types/node-red": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.2.0",
"@types/nano-cache": "^1.1.4",
"eslint": "9.18.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=16"
},
"keywords": [
"node-red",
"yandex",
"alice",
"iot",
"self",
"hosting"
],
"files" :[
"LICENSE",
"build",
"examples"
]
}