@nats-io/services 3.0.0-2 → 3.0.0-4
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/README.md +1 -1
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ NATS. NATS has always been a strong technology on which to build services, as
|
|
|
5
5
|
they are easy to write, are location and DNS independent and can be scaled up or
|
|
6
6
|
down by simply adding or removing instances of the service.
|
|
7
7
|
|
|
8
|
-
The services module further streamlines
|
|
8
|
+
The services module further streamlines NATS services development by providing
|
|
9
9
|
observability and standardization. The Service Framework allows your services to
|
|
10
10
|
be discovered, queried for status and schema information without additional
|
|
11
11
|
work.
|
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nats-io/services",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-4",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib/",
|
|
6
|
-
"build/src/"
|
|
6
|
+
"build/src/",
|
|
7
|
+
"LICENSE",
|
|
8
|
+
"README.md"
|
|
7
9
|
],
|
|
8
10
|
"types": "./lib/mod.d.js",
|
|
9
11
|
"exports": {
|
|
@@ -11,6 +13,10 @@
|
|
|
11
13
|
"./internal": "./lib/internal_mod.js"
|
|
12
14
|
},
|
|
13
15
|
"license": "Apache-2.0",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/nats-io/nats.js"
|
|
19
|
+
},
|
|
14
20
|
"private": false,
|
|
15
21
|
"scripts": {
|
|
16
22
|
"real-clean": "npm run clean && shx rm -Rf ./node_modules",
|
|
@@ -27,7 +33,7 @@
|
|
|
27
33
|
},
|
|
28
34
|
"description": "services library - this library implements all the base functionality for NATS services for javascript clients",
|
|
29
35
|
"dependencies": {
|
|
30
|
-
"@nats-io/nats-core": "~3.0.0-
|
|
36
|
+
"@nats-io/nats-core": "~3.0.0-23"
|
|
31
37
|
},
|
|
32
38
|
"devDependencies": {
|
|
33
39
|
"@types/node": "^22.0.0",
|