@nats-io/obj 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 +3 -3
  2. package/package.json +9 -3
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # obj
1
+ # Obj
2
2
 
3
3
  The obj module implements the NATS ObjectStore functionality using JetStream for
4
4
  JavaScript clients. JetStream clients can use streams to store and access data.
5
5
  Obj is materialized view that presents a different _API_ to interact with the
6
- data stored in a stream using the API for a ObjectStore which should be familiar
7
- to many application developers.
6
+ data stored in a stream using the API for an ObjectStore which should be
7
+ familiar to many application developers.
8
8
 
9
9
  ## Installation
10
10
 
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@nats-io/obj",
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",
@@ -36,4 +42,4 @@
36
42
  "typedoc": "^0.26.5",
37
43
  "typescript": "^5.5.4"
38
44
  }
39
- }
45
+ }