@node-i3x/pseudo-session-connector 0.1.0 → 0.2.3

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.
Files changed (2) hide show
  1. package/README.md +11 -2
  2. package/package.json +28 -16
package/README.md CHANGED
@@ -94,8 +94,17 @@ setInterval(100ms)
94
94
  | `node-opcua-pseudo-session` | In-process session |
95
95
  | `node-opcua-data-model` | QualifiedName, NodeClass |
96
96
 
97
+ ## Tutorial
98
+
99
+ For a complete, step-by-step guide with a full working example, see
100
+ **[TUTORIAL.md](./TUTORIAL.md)** -- a literate-programming walkthrough
101
+ that builds an OPC UA server + i3X REST API from scratch in ~80 lines.
102
+
97
103
  ## License
98
104
 
99
- **AGPL-3.0-or-later** — Free for open-source projects.
105
+ Dual-licensed:
106
+
107
+ - **AGPL-3.0-or-later** -- you may use, modify, and distribute this software freely, provided that all derivative works and network-accessible deployments also make their complete source code available under the AGPL.
108
+ - **Sterfive Commercial License** -- allows proprietary use without copyleft obligations.
100
109
 
101
- For commercial / proprietary use, contact [Sterfive](https://sterfive.com) for a commercial license.
110
+ See [LICENSING.md](./LICENSING.md) for details, or contact [Sterfive](https://sterfive.com) for commercial licensing.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-i3x/pseudo-session-connector",
3
- "version": "0.1.0",
3
+ "version": "0.2.3",
4
4
  "description": "i3X data-source adapter using node-opcua PseudoSession — connects directly to an AddressSpace without binary OPC UA transport",
5
5
  "license": "AGPL-3.0-or-later OR LicenseRef-Sterfive-Commercial",
6
6
  "author": "Sterfive SAS <contact@sterfive.com> (https://sterfive.com)",
@@ -18,32 +18,44 @@
18
18
  "type": "commercial",
19
19
  "url": "https://sterfive.com"
20
20
  },
21
- "keywords": ["opcua", "opc-ua", "i3x", "industrial", "iiot", "embedded", "pseudo-session", "address-space", "in-process", "node-opcua", "sterfive"],
21
+ "keywords": [
22
+ "opcua",
23
+ "opc-ua",
24
+ "i3x",
25
+ "industrial",
26
+ "iiot",
27
+ "embedded",
28
+ "pseudo-session",
29
+ "address-space",
30
+ "in-process",
31
+ "node-opcua",
32
+ "sterfive"
33
+ ],
22
34
  "type": "module",
23
- "main": "./src/index.ts",
24
- "types": "./src/index.ts",
35
+ "main": "./dist/index.js",
36
+ "types": "./dist/index.d.ts",
25
37
  "exports": {
26
- ".": "./src/index.ts"
38
+ ".": {
39
+ "types": "./dist/index.d.ts",
40
+ "import": "./dist/index.js"
41
+ }
27
42
  },
28
43
  "publishConfig": {
29
- "provenance": true,
30
- "main": "./dist/index.js",
31
- "types": "./dist/index.d.ts",
32
- "exports": {
33
- ".": {
34
- "types": "./dist/index.d.ts",
35
- "import": "./dist/index.js"
36
- }
37
- }
44
+ "provenance": true
38
45
  },
39
- "files": ["dist", "LICENSE", "LICENSE-AGPL-3.0", "LICENSING.md"],
46
+ "files": [
47
+ "dist",
48
+ "LICENSE",
49
+ "LICENSE-AGPL-3.0",
50
+ "LICENSING.md"
51
+ ],
40
52
  "scripts": {
41
53
  "build": "tsup",
42
54
  "typecheck": "tsc --noEmit",
43
55
  "test": "vitest run"
44
56
  },
45
57
  "dependencies": {
46
- "@node-i3x/core": "*",
58
+ "@node-i3x/core": "0.2.3",
47
59
  "node-opcua-address-space": "^2.128.0",
48
60
  "node-opcua-address-space-base": "^2.128.0",
49
61
  "node-opcua-data-model": "^2.128.0",