-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 3.28 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
79
80
81
82
83
84
85
86
{
"name": "@red-mobile/red-mobile-nodes",
"version": "3.4.4",
"description": "Extra nodes for RedMobile",
"scripts": {
"start": "npx node-red --setting=settings.js -v",
"type-check": "npx tsc --noEmit",
"copy": "copyfiles -u 1 \"./nodes/**/*.{png,svg,json,html}\" \"./dist/nodes/\"",
"build:ts": "npx tsc",
"build": "run-s build:ts copy",
"test:jest": "npx jest --runInBand nodes/",
"test": "run-s type-check test:jest",
"coverage": "npx jest --runInBand --coverage nodes/"
},
"keywords": ["redmobile", "nodered"],
"author": "hiroyuki okada",
"license": "MIT",
"dependencies": {
"axios": "1.7.9",
"is-base64": "1.1.0",
"qs": "6.13.1",
"ws": "8.18.0"
},
"devDependencies": {
"@swc/core": "1.10.4",
"@swc/jest": "0.2.37",
"@biomejs/biome": "1.9.3",
"@types/is-base64": "1.1.3",
"@types/jest": "29.5.14",
"@types/node-red": "1.3.5",
"@types/node-red-node-test-helper": "0.3.4",
"@types/ws": "8.5.13",
"copyfiles": "2.4.1",
"dprint": "0.48.0",
"jest": "29.7.0",
"node-red": "4.0.8",
"node-red-node-test-helper": "0.3.4",
"npm-run-all2": "6.2.6",
"typescript": "5.7.2"
},
"node-red": {
"nodes": {
"sensor subscribe": "./dist/nodes/sensors/subscribe/subscribe.js",
"sensor unsubscribe": "./dist/nodes/sensors/unsubscribe/unsubscribe.js",
"light": "./dist/nodes/sensors/light/light.js",
"motion": "./dist/nodes/sensors/motion/motion.js",
"gyroscope": "./dist/nodes/sensors/gyroscope/gyroscope.js",
"compass": "./dist/nodes/sensors/compass/compass.js",
"magnetic": "./dist/nodes/sensors/magnetic/magnetic.js",
"dB": "./dist/nodes/sensors/db/db.js",
"battery": "./dist/nodes/sensors/battery/battery.js",
"location": "./dist/nodes/sensors/geolocation/geolocation.js",
"proximity": "./dist/nodes/sensors/proximity/proximity.js",
"nfc": "./dist/nodes/sensors/nfc/nfc.js",
"speech-to-text": "./dist/nodes/cognitives/speech-to-text/speech-to-text.js",
"text-to-speech": "./dist/nodes/cognitives/text-to-speech/text-to-speech.js",
"in-app-browser": "./dist/nodes/in-app-browser/in-app-browser.js",
"vibrate": "./dist/nodes/notifications/vibrate/vibrate.js",
"beep": "./dist/nodes/notifications/beep/beep.js",
"alert": "./dist/nodes/notifications/alert/alert.js",
"confirm": "./dist/nodes/notifications/confirm/confirm.js",
"prompt": "./dist/nodes/notifications/prompt/prompt.js",
"camera-command": "./dist/nodes/camera-command/camera.js",
"camera": "./dist/nodes/camera/camera.js",
"serial": "./dist/nodes/serial/serial.js",
"volume": "./dist/nodes/volume/volume.js",
"intent": "./dist/nodes/intent/intent.js",
"sqlite": "./dist/nodes/sqlite/sqlite.js",
"ble-bledevice": "./dist/nodes/ble/00-bledevice.js",
"ble-notification": "./dist/nodes/ble/01-notification.js",
"ble-scan": "./dist/nodes/ble/02-scan.js",
"ble-connect": "./dist/nodes/ble/03-connect.js",
"ble-disconnect": "./dist/nodes/ble/04-disconnect.js",
"ble-read": "./dist/nodes/ble/05-read.js",
"ble-write": "./dist/nodes/ble/06-write.js",
"ble-subscribe": "./dist/nodes/ble/07-subscribe.js",
"ble-unsubscribe": "./dist/nodes/ble/08-unsubscribe.js",
"clipboard": "./dist/nodes/clipboard/clipboard.js",
"qrcode-scan": "./dist/nodes/qrcode/scan.js",
"mlkit": "./dist/nodes/mlkit/mlkit.js"
}
},
"engines": {
"node": "18"
}
}