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