@nats-io/services 3.0.0-2 → 3.0.0-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 +1 -1
  2. 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 their development by providing
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-2",
3
+ "version": "3.0.0-3",
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",
@@ -35,4 +41,4 @@
35
41
  "typedoc": "^0.26.5",
36
42
  "typescript": "^5.5.4"
37
43
  }
38
- }
44
+ }