@ruvos/handler-sdk 0.1.0 → 0.1.2

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 +2 -0
  2. package/package.json +18 -6
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @ruvos/handler-sdk
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@ruvos/handler-sdk)](https://www.npmjs.com/package/@ruvos/handler-sdk)
4
+
3
5
  SDK for building custom pipeline handlers for the [Ruvos](https://ruvos.io) healthcare data exchange platform.
4
6
 
5
7
  Handlers let you intercept and process FHIR resources at three stages of the Ruvos data pipeline:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruvos/handler-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -10,17 +10,26 @@
10
10
  }
11
11
  },
12
12
  "types": "./dist/index.d.ts",
13
- "files": ["dist", "!dist/.tsbuildinfo"],
13
+ "files": [
14
+ "dist",
15
+ "!dist/.tsbuildinfo"
16
+ ],
14
17
  "description": "SDK for building custom pipeline handlers for the Ruvos healthcare data exchange platform",
15
18
  "license": "MIT",
16
19
  "repository": {
17
20
  "type": "git",
18
- "url": "https://gitlab.com/ruvos/ruvos-platform/ruvos-io.git",
21
+ "url": "git+https://gitlab.com/ruvos/ruvos-platform/ruvos-io.git",
19
22
  "directory": "packages/handler-sdk"
20
23
  },
21
- "keywords": ["ruvos", "healthcare", "fhir", "handler", "pipeline", "sdk"],
24
+ "keywords": [
25
+ "ruvos",
26
+ "healthcare",
27
+ "fhir",
28
+ "handler",
29
+ "pipeline",
30
+ "sdk"
31
+ ],
22
32
  "publishConfig": {
23
- "access": "public",
24
33
  "registry": "https://registry.npmjs.org/"
25
34
  },
26
35
  "scripts": {
@@ -28,9 +37,12 @@
28
37
  "clean": "rm -rf dist .tsbuildinfo"
29
38
  },
30
39
  "devDependencies": {
31
- "@types/node": "^25.5.2"
40
+ "@types/node": "25.5.2"
32
41
  },
33
42
  "bin": {
34
43
  "create-handler": "./dist/cli/create-handler.js"
44
+ },
45
+ "engines": {
46
+ "node": ">=18"
35
47
  }
36
48
  }