@ethersphere/bee-js 3.0.0 → 3.3.1

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 (196) hide show
  1. package/README.md +2 -2
  2. package/dist/cjs/bee-debug.js +615 -0
  3. package/dist/cjs/bee.js +922 -0
  4. package/dist/cjs/chunk/bmt.js +55 -0
  5. package/dist/cjs/chunk/cac.js +56 -0
  6. package/dist/cjs/chunk/serialize.js +19 -0
  7. package/dist/cjs/chunk/signer.js +137 -0
  8. package/dist/cjs/chunk/soc.js +172 -0
  9. package/dist/cjs/chunk/span.js +29 -0
  10. package/dist/cjs/feed/index.js +184 -0
  11. package/dist/cjs/feed/json.js +41 -0
  12. package/dist/cjs/feed/topic.js +25 -0
  13. package/dist/cjs/feed/type.js +15 -0
  14. package/dist/cjs/index.js +35 -0
  15. package/dist/cjs/modules/bytes.js +74 -0
  16. package/dist/cjs/modules/bzz.js +131 -0
  17. package/dist/cjs/modules/chunk.js +58 -0
  18. package/dist/cjs/modules/debug/balance.js +77 -0
  19. package/dist/cjs/modules/debug/chequebook.js +167 -0
  20. package/dist/cjs/modules/debug/chunk.js +51 -0
  21. package/dist/cjs/modules/debug/connectivity.js +75 -0
  22. package/dist/cjs/modules/debug/settlements.js +45 -0
  23. package/dist/cjs/modules/debug/stamps.js +89 -0
  24. package/dist/cjs/modules/debug/states.js +47 -0
  25. package/dist/cjs/modules/debug/status.js +153 -0
  26. package/dist/cjs/modules/debug/tag.js +30 -0
  27. package/dist/cjs/modules/debug/transactions.js +81 -0
  28. package/dist/cjs/modules/feed.js +76 -0
  29. package/dist/cjs/modules/pinning.js +84 -0
  30. package/dist/cjs/modules/pss.js +55 -0
  31. package/dist/cjs/modules/soc.js +40 -0
  32. package/dist/cjs/modules/status.js +26 -0
  33. package/dist/cjs/modules/stewardship.js +41 -0
  34. package/dist/cjs/modules/tag.js +96 -0
  35. package/dist/cjs/package.json +8 -0
  36. package/dist/cjs/types/debug.js +9 -0
  37. package/dist/cjs/types/index.js +46 -0
  38. package/dist/cjs/types/ky-options.js +8 -0
  39. package/dist/cjs/types/ky-universal/common.js +8 -0
  40. package/dist/cjs/types/ky-universal/hooks.js +8 -0
  41. package/dist/cjs/types/ky-universal/retry.js +8 -0
  42. package/dist/cjs/utils/bytes.js +107 -0
  43. package/dist/cjs/utils/collection.browser.js +36 -0
  44. package/dist/cjs/utils/collection.js +70 -0
  45. package/dist/cjs/utils/collection.node.js +115 -0
  46. package/dist/cjs/utils/data.browser.js +78 -0
  47. package/dist/cjs/utils/data.js +60 -0
  48. package/dist/cjs/utils/error.js +50 -0
  49. package/dist/cjs/utils/eth.js +211 -0
  50. package/dist/cjs/utils/expose.js +44 -0
  51. package/dist/cjs/utils/file.js +49 -0
  52. package/dist/cjs/utils/hash.js +21 -0
  53. package/dist/cjs/utils/headers.js +59 -0
  54. package/dist/cjs/utils/hex.js +150 -0
  55. package/dist/cjs/utils/http.js +166 -0
  56. package/dist/cjs/utils/merge.js +34 -0
  57. package/dist/cjs/utils/pss.js +18 -0
  58. package/dist/cjs/utils/stamps.js +17 -0
  59. package/dist/cjs/utils/stream.js +146 -0
  60. package/dist/cjs/utils/tar.js +25 -0
  61. package/dist/cjs/utils/type.js +327 -0
  62. package/dist/cjs/utils/uint64.js +29 -0
  63. package/dist/cjs/utils/url.js +56 -0
  64. package/dist/index.browser.min.js +1 -1
  65. package/dist/index.browser.min.js.LICENSE.txt +5 -12
  66. package/dist/index.browser.min.js.map +1 -1
  67. package/dist/mjs/bee-debug.js +609 -0
  68. package/dist/mjs/bee.js +944 -0
  69. package/dist/mjs/chunk/bmt.js +56 -0
  70. package/dist/mjs/chunk/cac.js +52 -0
  71. package/dist/mjs/chunk/serialize.js +15 -0
  72. package/dist/mjs/chunk/signer.js +131 -0
  73. package/dist/mjs/chunk/soc.js +139 -0
  74. package/dist/mjs/chunk/span.js +28 -0
  75. package/dist/mjs/feed/index.js +145 -0
  76. package/dist/mjs/feed/json.js +27 -0
  77. package/dist/mjs/feed/topic.js +21 -0
  78. package/dist/mjs/feed/type.js +10 -0
  79. package/dist/mjs/index.js +7 -0
  80. package/dist/mjs/modules/bytes.js +59 -0
  81. package/dist/mjs/modules/bzz.js +122 -0
  82. package/dist/mjs/modules/chunk.js +45 -0
  83. package/dist/mjs/modules/debug/balance.js +57 -0
  84. package/dist/mjs/modules/debug/chequebook.js +150 -0
  85. package/dist/mjs/modules/debug/chunk.js +35 -0
  86. package/dist/mjs/modules/debug/connectivity.js +45 -0
  87. package/dist/mjs/modules/debug/settlements.js +29 -0
  88. package/dist/mjs/modules/debug/stamps.js +64 -0
  89. package/dist/mjs/modules/debug/states.js +31 -0
  90. package/dist/mjs/modules/debug/status.js +134 -0
  91. package/dist/mjs/modules/debug/tag.js +16 -0
  92. package/dist/mjs/modules/debug/transactions.js +63 -0
  93. package/dist/mjs/modules/feed.js +67 -0
  94. package/dist/mjs/modules/pinning.js +66 -0
  95. package/dist/mjs/modules/pss.js +40 -0
  96. package/dist/mjs/modules/soc.js +31 -0
  97. package/dist/mjs/modules/status.js +12 -0
  98. package/dist/mjs/modules/stewardship.js +24 -0
  99. package/dist/mjs/modules/tag.js +77 -0
  100. package/dist/mjs/package.json +8 -0
  101. package/dist/mjs/types/debug.js +7 -0
  102. package/dist/mjs/types/index.js +37 -0
  103. package/dist/mjs/types/ky-options.js +7 -0
  104. package/dist/mjs/types/ky-universal/common.js +7 -0
  105. package/dist/mjs/types/ky-universal/hooks.js +7 -0
  106. package/dist/mjs/types/ky-universal/retry.js +7 -0
  107. package/dist/mjs/utils/bytes.js +101 -0
  108. package/dist/mjs/utils/collection.browser.js +19 -0
  109. package/dist/mjs/utils/collection.js +64 -0
  110. package/dist/mjs/utils/collection.node.js +74 -0
  111. package/dist/mjs/utils/data.browser.js +73 -0
  112. package/dist/mjs/utils/data.js +43 -0
  113. package/dist/mjs/utils/error.js +56 -0
  114. package/dist/mjs/utils/eth.js +199 -0
  115. package/dist/mjs/utils/expose.js +9 -0
  116. package/dist/mjs/utils/file.js +36 -0
  117. package/dist/mjs/utils/hash.js +17 -0
  118. package/dist/mjs/utils/headers.js +58 -0
  119. package/dist/mjs/utils/hex.js +154 -0
  120. package/dist/mjs/utils/http.js +155 -0
  121. package/dist/mjs/utils/merge.js +36 -0
  122. package/dist/mjs/utils/pss.js +16 -0
  123. package/dist/mjs/utils/stamps.js +17 -0
  124. package/dist/mjs/utils/stream.js +156 -0
  125. package/dist/mjs/utils/tar.js +21 -0
  126. package/dist/mjs/utils/type.js +336 -0
  127. package/dist/mjs/utils/uint64.js +23 -0
  128. package/dist/mjs/utils/url.js +57 -0
  129. package/dist/{src → types}/bee-debug.d.ts +51 -1
  130. package/dist/{src → types}/bee.d.ts +21 -0
  131. package/dist/{src → types}/chunk/bmt.d.ts +0 -0
  132. package/dist/{src → types}/chunk/cac.d.ts +0 -0
  133. package/dist/{src → types}/chunk/serialize.d.ts +0 -0
  134. package/dist/{src → types}/chunk/signer.d.ts +0 -0
  135. package/dist/{src → types}/chunk/soc.d.ts +0 -0
  136. package/dist/{src → types}/chunk/span.d.ts +0 -0
  137. package/dist/{src → types}/feed/index.d.ts +0 -0
  138. package/dist/{src → types}/feed/json.d.ts +0 -0
  139. package/dist/{src → types}/feed/topic.d.ts +0 -0
  140. package/dist/{src → types}/feed/type.d.ts +0 -0
  141. package/dist/{src → types}/index.d.ts +0 -0
  142. package/dist/{src → types}/modules/bytes.d.ts +0 -0
  143. package/dist/{src → types}/modules/bzz.d.ts +0 -0
  144. package/dist/{src → types}/modules/chunk.d.ts +2 -10
  145. package/dist/{src → types}/modules/debug/balance.d.ts +0 -0
  146. package/dist/{src → types}/modules/debug/chequebook.d.ts +0 -0
  147. package/dist/{src → types}/modules/debug/chunk.d.ts +0 -0
  148. package/dist/{src → types}/modules/debug/connectivity.d.ts +0 -0
  149. package/dist/{src → types}/modules/debug/settlements.d.ts +0 -0
  150. package/dist/{src → types}/modules/debug/stamps.d.ts +0 -0
  151. package/dist/{src → types}/modules/debug/states.d.ts +0 -0
  152. package/dist/types/modules/debug/status.d.ts +72 -0
  153. package/dist/{src → types}/modules/debug/tag.d.ts +0 -0
  154. package/dist/{src → types}/modules/debug/transactions.d.ts +0 -0
  155. package/dist/{src → types}/modules/feed.d.ts +0 -0
  156. package/dist/{src → types}/modules/pinning.d.ts +0 -0
  157. package/dist/{src → types}/modules/pss.d.ts +0 -0
  158. package/dist/{src → types}/modules/soc.d.ts +0 -0
  159. package/dist/{src → types}/modules/status.d.ts +0 -0
  160. package/dist/{src → types}/modules/stewardship.d.ts +0 -0
  161. package/dist/{src → types}/modules/tag.d.ts +0 -0
  162. package/dist/{src → types}/types/debug.d.ts +25 -0
  163. package/dist/{src → types}/types/index.d.ts +32 -2
  164. package/dist/types/types/ky-options.d.ts +221 -0
  165. package/dist/types/types/ky-universal/common.d.ts +13 -0
  166. package/dist/types/types/ky-universal/hooks.d.ts +92 -0
  167. package/dist/types/types/ky-universal/retry.d.ts +38 -0
  168. package/dist/{src → types}/utils/bytes.d.ts +0 -0
  169. package/dist/types/utils/collection.browser.d.ts +15 -0
  170. package/dist/{src → types}/utils/collection.d.ts +0 -14
  171. package/dist/types/utils/collection.node.d.ts +15 -0
  172. package/dist/{src → types}/utils/data.browser.d.ts +0 -0
  173. package/dist/{src → types}/utils/data.d.ts +0 -0
  174. package/dist/types/utils/error.d.ts +33 -0
  175. package/dist/{src → types}/utils/eth.d.ts +0 -0
  176. package/dist/{src → types}/utils/expose.d.ts +3 -1
  177. package/dist/{src → types}/utils/file.d.ts +0 -0
  178. package/dist/{src → types}/utils/hash.d.ts +0 -0
  179. package/dist/{src → types}/utils/headers.d.ts +0 -0
  180. package/dist/{src → types}/utils/hex.d.ts +0 -0
  181. package/dist/{src → types}/utils/http.d.ts +7 -9
  182. package/dist/{src → types}/utils/merge.d.ts +0 -0
  183. package/dist/{src → types}/utils/pss.d.ts +0 -0
  184. package/dist/types/utils/stamps.d.ts +12 -0
  185. package/dist/{src → types}/utils/stream.d.ts +11 -8
  186. package/dist/{src → types}/utils/tar.d.ts +0 -0
  187. package/dist/{src → types}/utils/type.d.ts +6 -0
  188. package/dist/{src → types}/utils/uint64.d.ts +0 -0
  189. package/dist/{src → types}/utils/url.d.ts +0 -0
  190. package/package.json +61 -43
  191. package/CHANGELOG.md +0 -546
  192. package/dist/index.min.js +0 -3
  193. package/dist/index.min.js.LICENSE.txt +0 -50
  194. package/dist/index.min.js.map +0 -1
  195. package/dist/src/modules/debug/status.d.ts +0 -18
  196. package/dist/src/utils/error.d.ts +0 -14
@@ -1,7 +1,6 @@
1
1
  /// <reference types="node" />
2
- import type { Readable as NodeReadableType } from 'stream';
3
- import { ReadableStream } from 'web-streams-polyfill/ponyfill';
4
- import { ReadableOptions as NodeReadableOptions } from 'readable-stream';
2
+ import { Readable as NodeReadableNative, ReadableOptions as NodeReadableOptions } from 'stream';
3
+ import { ReadableStream } from 'web-streams-polyfill/dist/ponyfill.js';
5
4
  import { Readable } from '../types';
6
5
  /**
7
6
  * Validates if passed object is either browser's ReadableStream
@@ -9,9 +8,9 @@ import { Readable } from '../types';
9
8
  *
10
9
  * @param entry
11
10
  */
12
- export declare function isReadable(entry: unknown): entry is NodeReadableType;
11
+ export declare function isReadable(entry: unknown): entry is Readable;
13
12
  export declare function isReadableStream(entry: unknown): entry is ReadableStream;
14
- export declare function isNodeReadable(entry: unknown): entry is NodeReadableType;
13
+ export declare function isNodeReadable(entry: unknown): entry is NodeReadableNative;
15
14
  /**
16
15
  * Function that converts Node's Readable into WHATWG ReadableStream
17
16
  *
@@ -22,16 +21,20 @@ export declare function isNodeReadable(entry: unknown): entry is NodeReadableTyp
22
21
  * @licence Apache License 2.0 https://github.com/gwicke/node-web-streams/blob/master/LICENSE
23
22
  * @param nodeStream
24
23
  */
25
- export declare function readableNodeToWeb(nodeStream: NodeReadableType): ReadableStream<Uint8Array>;
24
+ export declare function readableNodeToWeb(nodeStream: NodeReadableNative): ReadableStream<Uint8Array>;
26
25
  /**
27
26
  * Function that converts WHATWG ReadableStream into Node's Readable
28
27
  *
29
28
  * Taken over from https://github.com/gwicke/node-web-streams/blob/master/lib/conversions.js
30
- * Because it uses forked web-streams-polyfill that are outdated.
29
+ * Because it uses forked web-streams-polyfill that is outdated.
30
+ *
31
+ * **Warning!**
32
+ * If you want to use this function in browser you have to polyfill `stream` package with your bundler.
31
33
  *
32
34
  * @author https://github.com/gwicke
33
35
  * @licence Apache License 2.0 https://github.com/gwicke/node-web-streams/blob/master/LICENSE
34
36
  * @param webStream
37
+ * @param options
35
38
  */
36
- export declare function readableWebToNode(webStream: ReadableStream, options?: NodeReadableOptions): NodeReadableType;
39
+ export declare function readableWebToNode(webStream: ReadableStream<unknown>, options?: NodeReadableOptions): NodeReadableNative;
37
40
  export declare function normalizeToReadableStream(stream: Readable): ReadableStream;
File without changes
@@ -12,6 +12,12 @@ export declare function isObject(value: unknown): value is Record<string, unknow
12
12
  * @param value
13
13
  */
14
14
  export declare function isStrictlyObject(value: unknown): value is object;
15
+ /**
16
+ * Asserts if object is Error
17
+ *
18
+ * @param e
19
+ */
20
+ export declare function isError(e: unknown): e is Error;
15
21
  export declare function assertStrictlyObject(value: unknown, name?: string): asserts value is object;
16
22
  export declare function assertBoolean(value: unknown, name?: string): asserts value is boolean;
17
23
  export declare function assertInteger(value: unknown, name?: string): asserts value is number | NumberString;
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethersphere/bee-js",
3
- "version": "3.0.0",
3
+ "version": "3.3.1",
4
4
  "description": "Javascript client for Bee",
5
5
  "keywords": [
6
6
  "bee",
@@ -18,30 +18,43 @@
18
18
  "url": "https://github.com/ethersphere/bee-js/issues/"
19
19
  },
20
20
  "license": "BSD-3-Clause",
21
- "main": "dist/index.min.js",
22
21
  "repository": {
23
22
  "type": "git",
24
23
  "url": "https://github.com/ethersphere/bee-js.git"
25
24
  },
25
+ "main": "dist/cjs/index.js",
26
+ "module": "dist/mjs/index.js",
27
+ "exports": {
28
+ ".": {
29
+ "import": "./dist/mjs/index.js",
30
+ "require": "./dist/cjs/index.js"
31
+ }
32
+ },
33
+ "types": "dist/types/index.d.ts",
26
34
  "browser": {
27
- "./dist/index.min.js": "./dist/index.browser.min.js",
28
- "data": "data.browser"
35
+ "stream": false,
36
+ "./src/utils/data.ts": "./src/utils/data.browser.ts",
37
+ "./dist/cjs/utils/data.js": "./dist/cjs/utils/data.browser.js",
38
+ "./dist/mjs/utils/data.js": "./dist/mjs/utils/data.browser.js",
39
+ "./dist/cjs/utils/collection.node.js": "./dist/cjs/utils/collection.browser.js",
40
+ "./dist/mjs/utils/collection.node.js": "./dist/mjs/utils/collection.browser.js",
41
+ "./src/utils/collection.node.ts": "./src/utils/collection.browser.ts"
29
42
  },
30
43
  "files": [
31
44
  "dist"
32
45
  ],
33
- "types": "dist/src/index.d.ts",
34
46
  "scripts": {
35
- "prepublishOnly": "rimraf dist && npm run compile:types && npm run compile:browser --env mode=production && npm run compile:node --env mode=production",
36
- "compile:node": "webpack --progress --env target=node",
37
- "compile:types": "tsc --emitDeclarationOnly --declaration",
38
- "compile:browser": "webpack --progress --env target=web",
47
+ "prepublishOnly": "cross-env NODE_ENV=production npm run build",
48
+ "build": "rimraf dist && npm run build:node && npm run build:types && npm run build:browser",
49
+ "build:node": "tsc -p tsconfig.json && tsc -p tsconfig-mjs.json && ./build-fixup && babel --plugins \"babel-plugin-add-import-extension\" --out-dir dist/mjs/ dist/mjs/",
50
+ "build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
51
+ "build:browser": "webpack --progress",
39
52
  "mock-ci": "npm run lint:check && npm run check:types && npm run test",
40
53
  "docs": "rimraf docs && typedoc",
41
- "test": "npm run compile:browser && jest --verbose --selectProjects=node:unit node:integration dom:integration --config=jest.config.ts",
42
- "test:integration:browser": "npm run compile:browser && jest --verbose --selectProjects=dom:integration --config=jest.config.ts",
54
+ "test": "npm run build:browser && jest --verbose --selectProjects=node:unit node:integration dom:integration --config=jest.config.ts",
55
+ "test:integration:browser": "npm run build:browser && jest --verbose --selectProjects=dom:integration --config=jest.config.ts",
43
56
  "test:integration:node": "jest --verbose --selectProjects=node:integration --config=jest.config.ts",
44
- "test:integration": "npm run compile:browser && jest --verbose --selectProjects=node:integration dom:integration --config=jest.config.ts",
57
+ "test:integration": "npm run build:browser && jest --verbose --selectProjects=node:integration dom:integration --config=jest.config.ts",
45
58
  "test:unit": "jest --verbose --selectProjects=node:unit --config=jest.config.ts ",
46
59
  "test:node": "jest --verbose --selectProjects=node:unit node:integration --config=jest.config.ts",
47
60
  "test:browser": "npm run test:integration:browser",
@@ -51,7 +64,7 @@
51
64
  "depcheck": "depcheck ."
52
65
  },
53
66
  "dependencies": {
54
- "@types/readable-stream": "^2.3.11",
67
+ "@types/readable-stream": "^2.3.13",
55
68
  "bufferutil": "^4.0.3",
56
69
  "cross-blob": "^2.0.1",
57
70
  "elliptic": "^6.5.4",
@@ -59,65 +72,70 @@
59
72
  "js-sha3": "^0.8.0",
60
73
  "ky": "^0.25.1",
61
74
  "ky-universal": "^0.8.2",
62
- "readable-stream": "^3.6.0",
75
+ "semver": "^7.3.5",
63
76
  "tar-js": "^0.3.0",
64
- "utf-8-validate": "^5.0.5",
77
+ "utf-8-validate": "^5.0.8",
65
78
  "web-streams-polyfill": "^3.1.0",
66
- "ws": "^7.5.0"
79
+ "ws": "^8.5.0"
67
80
  },
68
81
  "devDependencies": {
82
+ "@babel/cli": "^7.17.0",
69
83
  "@babel/core": "^7.14.6",
70
- "@babel/plugin-proposal-class-properties": "^7.14.5",
84
+ "@babel/plugin-proposal-class-properties": "^7.16.7",
71
85
  "@babel/plugin-transform-runtime": "^7.14.5",
72
- "@babel/preset-env": "^7.14.7",
86
+ "@babel/preset-env": "^7.16.11",
73
87
  "@babel/preset-typescript": "^7.14.5",
74
- "@commitlint/cli": "^12.1.1",
75
- "@commitlint/config-conventional": "^12.1.4",
88
+ "@commitlint/cli": "^16.2.1",
89
+ "@commitlint/config-conventional": "^16.2.1",
76
90
  "@fluffy-spoon/substitute": "^1.208.0",
77
- "@jest/test-sequencer": "^27.0.5",
91
+ "@jest/test-sequencer": "^27.5.0",
78
92
  "@jest/types": "^27.0.2",
79
- "@types/content-disposition": "^0.5.3",
80
- "@types/debug": "^4.1.5",
93
+ "@types/content-disposition": "^0.5.4",
94
+ "@types/debug": "^4.1.7",
81
95
  "@types/elliptic": "^6.4.12",
82
- "@types/expect-puppeteer": "^4.4.5",
96
+ "@types/expect-puppeteer": "^4.4.7",
83
97
  "@types/glob": "^7.1.3",
84
98
  "@types/jest": "^26.0.23",
85
99
  "@types/jest-environment-puppeteer": "^4.4.1",
86
100
  "@types/node": "^15.12.4",
87
101
  "@types/puppeteer": "^5.4.3",
88
- "@types/terser-webpack-plugin": "^5.0.3",
102
+ "@types/semver": "^7.3.9",
89
103
  "@types/ws": "^7.4.5",
90
- "@typescript-eslint/eslint-plugin": "^4.28.0",
91
- "@typescript-eslint/parser": "^4.28.0",
104
+ "@typescript-eslint/eslint-plugin": "^5.10.0",
105
+ "@typescript-eslint/parser": "^5.10.0",
92
106
  "babel-jest": "^27.0.5",
93
107
  "babel-loader": "^8.2.2",
108
+ "babel-plugin-add-import-extension": "^1.6.0",
109
+ "cross-env": "^7.0.3",
94
110
  "debug": "^4.3.1",
95
- "depcheck": "^1.4.0",
96
- "eslint": "^7.29.0",
111
+ "depcheck": "^1.4.3",
112
+ "eslint": "^8.8.0",
97
113
  "eslint-config-prettier": "^8.3.0",
98
- "eslint-plugin-jest": "^24.3.6",
99
- "eslint-plugin-prettier": "^3.4.0",
100
- "eslint-plugin-unused-imports": "^1.1.1",
114
+ "eslint-plugin-jest": "^25.7.0",
115
+ "eslint-plugin-prettier": "^4.0.0",
116
+ "eslint-plugin-unused-imports": "^2.0.0",
101
117
  "glob": "^7.1.7",
102
118
  "husky": "^6.0.0",
103
- "jest": "^27.0.5",
119
+ "jest": "^27.4.7",
104
120
  "jest-puppeteer": "^5.0.4",
105
- "nock": "^13.1.0",
121
+ "nock": "^13.2.2",
106
122
  "prettier": "^2.3.1",
107
- "puppeteer": "^9.1.1",
123
+ "puppeteer": "^13.2.0",
108
124
  "rimraf": "^3.0.2",
109
- "terser-webpack-plugin": "^5.1.3",
110
- "ts-node": "^10.0.0",
111
- "typedoc": "^0.21.0",
112
- "typedoc-plugin-markdown": "^3.10.0",
113
- "typescript": "^4.3.4",
114
- "webpack": "^5.40.0",
125
+ "terser-webpack-plugin": "^5.3.0",
126
+ "ts-node": "^10.4.0",
127
+ "typedoc": "^0.22.11",
128
+ "typedoc-plugin-markdown": "^3.11.12",
129
+ "typescript": "^4.5.4",
130
+ "webpack": "^5.68.0",
115
131
  "webpack-bundle-analyzer": "^4.4.1",
116
- "webpack-cli": "^4.7.2"
132
+ "webpack-cli": "^4.9.2"
117
133
  },
118
134
  "engines": {
119
135
  "node": ">=12.0.0",
120
136
  "npm": ">=6.0.0",
121
- "bee": "1.4.0-8fa696a8"
137
+ "beeApiVersion": "2.0.0",
138
+ "beeDebugApiVersion": "1.2.1",
139
+ "bee": "1.4.3-1213e063"
122
140
  }
123
141
  }