@ocap/indexdb 1.20.1 → 1.20.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 +11 -12
package/README.md CHANGED
@@ -9,7 +9,7 @@ Defines the abstract interface of OCAP IndexDB, must be implemented with an actu
9
9
  ## Usage
10
10
 
11
11
  ```shell
12
- yarn add @ocap/statedb-memory
12
+ pnpm install @ocap/statedb-memory
13
13
  ```
14
14
 
15
15
  Then:
package/package.json CHANGED
@@ -3,18 +3,12 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.20.1",
6
+ "version": "1.20.3",
7
7
  "description": "Defines the basic interface for OCAP IndexDB",
8
8
  "main": "lib/main.js",
9
9
  "files": [
10
10
  "lib"
11
11
  ],
12
- "scripts": {
13
- "lint": "eslint tests lib",
14
- "lint:fix": "eslint --fix tests lib",
15
- "test": "jest --forceExit --detectOpenHandles",
16
- "coverage": "npm run test -- --coverage"
17
- },
18
12
  "keywords": [],
19
13
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
20
14
  "contributors": [
@@ -25,10 +19,15 @@
25
19
  "jest": "^29.7.0"
26
20
  },
27
21
  "dependencies": {
28
- "@ocap/state": "1.20.1",
29
- "@ocap/util": "1.20.1",
30
22
  "kareem": "^2.4.1",
31
- "lodash": "^4.17.21"
23
+ "lodash": "^4.17.21",
24
+ "@ocap/util": "1.20.3",
25
+ "@ocap/state": "1.20.3"
32
26
  },
33
- "gitHead": "f73bddbe4b86106fd348e43ce9e19a626acdc9f6"
34
- }
27
+ "scripts": {
28
+ "lint": "eslint tests lib",
29
+ "lint:fix": "eslint --fix tests lib",
30
+ "test": "jest --forceExit --detectOpenHandles",
31
+ "coverage": "npm run test -- --coverage"
32
+ }
33
+ }