@ocap/client 1.18.0 → 1.18.2
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/dist/base.js +20 -1
- package/dist/base.js.map +1 -1
- package/dist/browser.d.ts +3 -0
- package/dist/bundle.js +2 -12
- package/dist/bundle.js.LICENSE.txt +26 -0
- package/dist/report.html +13 -27
- package/dist/schema/graphql.json +36 -0
- package/dist/schema/graphql.txt +2 -2
- package/dist/types.js +3 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +3 -0
- package/docs/README.md +9 -6
- package/lib/base.js +20 -1
- package/lib/base.js.map +1 -1
- package/lib/node.d.ts +3 -0
- package/lib/schema/graphql.json +36 -0
- package/lib/schema/graphql.txt +2 -2
- package/lib/types.js +3 -0
- package/lib/types.js.map +1 -1
- package/package.json +19 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/client",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.2",
|
|
4
4
|
"description": "graphql client to read/write data on arcblock blockchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphql",
|
|
@@ -30,22 +30,25 @@
|
|
|
30
30
|
"lib"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@arcblock/did": "1.18.
|
|
34
|
-
"@arcblock/did-util": "1.18.
|
|
33
|
+
"@arcblock/did": "1.18.2",
|
|
34
|
+
"@arcblock/did-util": "1.18.2",
|
|
35
|
+
"@arcblock/jwt": "1.18.2",
|
|
35
36
|
"@arcblock/sdk-util": "^0.32.0",
|
|
36
|
-
"@arcblock/ws": "1.18.
|
|
37
|
-
"@ocap/asset": "1.18.
|
|
38
|
-
"@ocap/mcrypto": "1.18.
|
|
39
|
-
"@ocap/message": "1.18.
|
|
40
|
-
"@ocap/proto": "1.18.
|
|
41
|
-
"@ocap/util": "1.18.
|
|
42
|
-
"@ocap/wallet": "1.18.
|
|
37
|
+
"@arcblock/ws": "1.18.2",
|
|
38
|
+
"@ocap/asset": "1.18.2",
|
|
39
|
+
"@ocap/mcrypto": "1.18.2",
|
|
40
|
+
"@ocap/message": "1.18.2",
|
|
41
|
+
"@ocap/proto": "1.18.2",
|
|
42
|
+
"@ocap/util": "1.18.2",
|
|
43
|
+
"@ocap/wallet": "1.18.2",
|
|
43
44
|
"blueimp-md5": "^2.19.0",
|
|
45
|
+
"buffer": "6.0.3",
|
|
44
46
|
"debug": "^4.3.4",
|
|
45
47
|
"is-absolute-url": "^3.0.3",
|
|
46
48
|
"jsonpack": "^1.1.5",
|
|
47
49
|
"lodash": "^4.17.21",
|
|
48
50
|
"react-app-polyfill": "^1.0.6",
|
|
51
|
+
"readable-stream": "3.6.0",
|
|
49
52
|
"wolfy87-eventemitter": "^5.2.9"
|
|
50
53
|
},
|
|
51
54
|
"devDependencies": {
|
|
@@ -58,14 +61,15 @@
|
|
|
58
61
|
"inspectpack": "^4.7.1",
|
|
59
62
|
"jest": "^27.5.1",
|
|
60
63
|
"jsdoc-to-markdown": "^7.1.1",
|
|
64
|
+
"node-polyfill-webpack-plugin": "^2.0.1",
|
|
61
65
|
"prettier": "^2.7.1",
|
|
62
66
|
"remark-cli": "^10.0.1",
|
|
63
67
|
"remark-preset-github": "^4.0.4",
|
|
64
68
|
"rimraf": "^2.7.1",
|
|
65
69
|
"shelljs": "^0.8.5",
|
|
66
|
-
"webpack": "^
|
|
67
|
-
"webpack-bundle-analyzer": "^
|
|
68
|
-
"webpack-cli": "^
|
|
70
|
+
"webpack": "^5.74.0",
|
|
71
|
+
"webpack-bundle-analyzer": "^4.7.0",
|
|
72
|
+
"webpack-cli": "^4.10.0"
|
|
69
73
|
},
|
|
70
74
|
"remarkConfig": {
|
|
71
75
|
"plugins": [
|
|
@@ -81,7 +85,7 @@
|
|
|
81
85
|
"lint": "eslint src examples tests",
|
|
82
86
|
"lint:fix": "eslint --fix src examples tests",
|
|
83
87
|
"clean": "rimraf lib && rimraf dist",
|
|
84
|
-
"build-browser": "BABEL_ENV=browser babel ./src --out-dir ./dist --source-maps --copy-files && webpack
|
|
88
|
+
"build-browser": "BABEL_ENV=browser babel ./src --out-dir ./dist --source-maps --copy-files && webpack && rm -f ./dist/node.*",
|
|
85
89
|
"build-node": "babel ./src --out-dir ./lib --source-maps --copy-files && rm -f ./lib/browser.*",
|
|
86
90
|
"build": "npm run clean && npm run build-node && npm run build-browser",
|
|
87
91
|
"build:watch": "babel ./src --out-dir ./lib --source-maps --copy-files --watch",
|
|
@@ -105,5 +109,5 @@
|
|
|
105
109
|
"bugs": {
|
|
106
110
|
"url": "https://github.com/ArcBlock/asset-chain/issues"
|
|
107
111
|
},
|
|
108
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "7bd3abefcf732fcf5d4521622ca06db67671d853"
|
|
109
113
|
}
|