@opcua/for-node-red 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/all.js +22061 -0
- package/assets/darwin-x63_lexactivator.node +1 -0
- package/assets/linux-arm64_lexactivator.node +1 -0
- package/assets/linux-arm_lexactivator.node +1 -0
- package/assets/linux-x64_lexactivator.node +1 -0
- package/assets/win32-ia32_LexActivator.dll +1 -0
- package/assets/win32-ia32_lexactivator.node +1 -0
- package/assets/win32-x64_LexActivator.dll +1 -0
- package/assets/win32-x64_lexactivator.node +1 -0
- package/package.json +74 -0
package/package.json
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
{
|
2
|
+
"name": "@opcua/for-node-red",
|
3
|
+
"version": "2.0.0",
|
4
|
+
"description": "The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team",
|
5
|
+
"repository": {
|
6
|
+
"type": "git",
|
7
|
+
"url": "git@gitlab.sterfive.fr:sterfive/opcua-for-nodered.git"
|
8
|
+
},
|
9
|
+
"keywords": [
|
10
|
+
"node-red",
|
11
|
+
"OPC UA",
|
12
|
+
"opc-ua",
|
13
|
+
"unified automation",
|
14
|
+
"opc foundation",
|
15
|
+
"node-opcua"
|
16
|
+
],
|
17
|
+
"authors": [
|
18
|
+
{
|
19
|
+
"name": "Etienne Rossignon",
|
20
|
+
"email": "etienne.rossignon@sterfive.com"
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"license": "see LICENSE file",
|
24
|
+
"bugs": {
|
25
|
+
"url": "git@gitlab.sterfive.fr:sterfive/opcua-for-nodered.git"
|
26
|
+
},
|
27
|
+
"node-red": {
|
28
|
+
"version": ">=3.0",
|
29
|
+
"nodes": {
|
30
|
+
"OpcUa-Endpoint2": "./source/OpcUa-Endpoint2/OpcUa-Endpoint2.js",
|
31
|
+
"OpcUa-Client2-Call": "./source/OpcUa-Client2-Call/OpcUa-Client2-Call.js",
|
32
|
+
"OpcUa-Client2-Monitor": "./source/OpcUa-Client2-Monitor/OpcUa-Client2-Monitor.js",
|
33
|
+
"OpcUa-Client2-MonitorEvent": "./source/OpcUa-Client2-MonitorEvent/OpcUa-Client2-MonitorEvent.js",
|
34
|
+
"OpcUa-Client2-Read": "./source/OpcUa-Client2-Read/OpcUa-Client2-Read.js"
|
35
|
+
}
|
36
|
+
},
|
37
|
+
"engines": {
|
38
|
+
"node": ">=18"
|
39
|
+
},
|
40
|
+
"dependencies": {
|
41
|
+
"@types/jqueryui": "^1.12.19",
|
42
|
+
"@types/lodash.clonedeep": "^4.5.8",
|
43
|
+
"@types/node-red": "^1.3.3",
|
44
|
+
"body-parser": "^1.20.2",
|
45
|
+
"boxen": "5",
|
46
|
+
"buffer": "^6.0.3",
|
47
|
+
"chalk": "4.1.2",
|
48
|
+
"env-paths": "2.2.1",
|
49
|
+
"lodash.clonedeep": "^4.5.0",
|
50
|
+
"node-opcua": "^2.115.0",
|
51
|
+
"node-opcua-basic-types": "2.114.0",
|
52
|
+
"node-opcua-client": "^2.115.0",
|
53
|
+
"node-opcua-client-crawler": "^2.115.0",
|
54
|
+
"node-opcua-data-model": "2.114.0",
|
55
|
+
"node-opcua-data-value": "2.114.0",
|
56
|
+
"node-opcua-file-transfer": "^2.115.0",
|
57
|
+
"node-opcua-json": "^0.50.0",
|
58
|
+
"node-opcua-nodeid": "2.114.0",
|
59
|
+
"node-opcua-pseudo-session": "declareLicenceWidget^2.114.0",
|
60
|
+
"node-opcua-types": "^2.114.0"
|
61
|
+
},
|
62
|
+
"directories": {
|
63
|
+
"example": "examples"
|
64
|
+
},
|
65
|
+
"homepage": "https://gitlab.sterfive.com/sterfive/opcua-for-node-red",
|
66
|
+
"scripts": {
|
67
|
+
"prepare:debug": "npm install --no-save node-red",
|
68
|
+
"prepare:link": "ln -s `pwd` ~/.node-red/node_modules/opcua-for-node-red ",
|
69
|
+
"node-red:quick": "node node_modules/node-red/red.js --debug",
|
70
|
+
"node-red": " npm run prepare:debug && npm run node-red:quick",
|
71
|
+
"ncu": "npx npm-check-updates -u -t minor -x antlr4ts*"
|
72
|
+
},
|
73
|
+
"devDependencies": {}
|
74
|
+
}
|