@ocap/gql 1.20.2 → 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
@@ -5,7 +5,7 @@ Defines core GQL APIs
5
5
  ## Usage
6
6
 
7
7
  ```shell
8
- yarn add @ocap/gql
8
+ pnpm install @ocap/gql
9
9
  ```
10
10
 
11
11
  Then:
package/package.json CHANGED
@@ -3,18 +3,12 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.20.2",
6
+ "version": "1.20.3",
7
7
  "description": "Resolver middleware for ocap adapters",
8
8
  "main": "lib/index.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": [
@@ -22,16 +16,21 @@
22
16
  ],
23
17
  "license": "MIT",
24
18
  "dependencies": {
25
- "@arcblock/ws": "1.20.2",
26
- "@ocap/schema": "1.20.2",
27
19
  "debug": "^4.3.6",
28
20
  "express-graphql": "^0.12.0",
29
21
  "graphql": "16.5.0",
30
- "lodash": "^4.17.21"
22
+ "lodash": "^4.17.21",
23
+ "@ocap/schema": "1.20.3",
24
+ "@arcblock/ws": "1.20.3"
31
25
  },
32
26
  "devDependencies": {
33
27
  "express": "^4.19.2",
34
28
  "jest": "^29.7.0"
35
29
  },
36
- "gitHead": "70ddd9b43070605879fed7dff50a9f19f5325ea8"
37
- }
30
+ "scripts": {
31
+ "lint": "eslint tests lib",
32
+ "lint:fix": "eslint --fix tests lib",
33
+ "test": "jest --forceExit --detectOpenHandles",
34
+ "coverage": "npm run test -- --coverage"
35
+ }
36
+ }