-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.82 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.82 KB
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",
"version": "2.3.7",
"description": "",
"scripts": {
"start": "npm run build && node-red",
"build": "tsc && npm run copy-html",
"copy-html": "cp ./src/*.html ./nodes/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/efa2000/node-red-contrib-alice.git"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"node-red",
"yandex",
"alice",
"яндекс",
"алиса"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"alice-service": "./nodes/alice.js",
"alice-device": "./nodes/alice-device.js",
"alice-onoff": "./nodes/alice-onoff.js",
"alice-togle": "./nodes/alice-togle.js",
"alice-range": "./nodes/alice-range.js",
"alice-color": "./nodes/alice-color.js",
"alice-mode": "./nodes/alice-mode.js",
"alice-sensor": "./nodes/alice-sensor.js",
"alice-event": "./nodes/alice-event.js",
"alice-video": "./nodes/alice-video.js"
}
},
"author": "Efa2000",
"license": "MIT",
"bugs": {
"url": "https://github.com/efa2000/node-red-contrib-alice/issues"
},
"homepage": "https://github.com/efa2000/node-red-contrib-alice#readme",
"dependencies": {
"axios": "^1.4.0",
"mqtt": "^4.3.8"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@types/node-red": "^1.3.4",
"nodemon": "^3.0.3",
"typescript": "^5.3.3"
},
"nodemonConfig": {
"ignoreRoot": [".git", "test"],
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules",
"node_modules/**/test",
"*.log"
],
"verbose": true,
"delay": "1000",
"events": {
"restart": "echo ------ restarted due to: $FILENAME ------"
},
"watch": [
"src/",
"node_modules/node-red-*"
],
"ext": "js json htm html css"
}
}