@xyo-network/account-model 2.84.18 → 2.85.0
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/browser/index.cjs +3 -2
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +5 -2
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +3 -2
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +5 -2
- package/dist/node/index.js.map +1 -1
- package/package.json +3 -3
package/dist/browser/index.cjs
CHANGED
|
@@ -3,6 +3,7 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
6
7
|
var __export = (target, all) => {
|
|
7
8
|
for (var name in all)
|
|
8
9
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -27,7 +28,7 @@ module.exports = __toCommonJS(src_exports);
|
|
|
27
28
|
|
|
28
29
|
// src/Account.ts
|
|
29
30
|
var ethMessagePrefix = "Ethereum Signed Message:\n";
|
|
30
|
-
var isAccountInstance = (account) => {
|
|
31
|
+
var isAccountInstance = /* @__PURE__ */ __name((account) => {
|
|
31
32
|
return typeof account === "object" && typeof account["address"] === "string";
|
|
32
|
-
};
|
|
33
|
+
}, "isAccountInstance");
|
|
33
34
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Account.ts"],"sourcesContent":["export * from './Account'\n","import { KeyPairInstance } from '@xyo-network/key-model'\nimport { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport type { Mnemonic } from 'ethers'\n\nexport const ethMessagePrefix = '\\u0019Ethereum Signed Message:\\n'\n\nexport interface PhraseInitializationConfig {\n phrase: string\n}\nexport interface PrivateKeyInitializationConfig {\n privateKey: ArrayBuffer\n}\nexport interface MnemonicInitializationConfig {\n mnemonic: string\n path?: string\n}\nexport interface AccountOptions {\n previousHash?: ArrayBuffer\n}\n\nexport type InitializationConfig = PhraseInitializationConfig | PrivateKeyInitializationConfig | MnemonicInitializationConfig\n\nexport type AccountConfig = InitializationConfig & AccountOptions\n\nexport interface AccountInstance extends KeyPairInstance {\n address: string\n addressBytes: ArrayBuffer | undefined\n previousHash: string | undefined\n previousHashBytes: ArrayBuffer | undefined\n sign: (hash: ArrayBuffer, previousHash: ArrayBuffer | undefined) => ArrayBuffer | Promise<ArrayBuffer>\n verify: (msg: ArrayBuffer, signature: ArrayBuffer) => boolean | Promise<boolean>\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isAccountInstance = (account: any): account is AccountInstance => {\n return typeof account === 'object' && typeof account['address'] === 'string'\n}\n\nexport interface AccountStatic<T extends AccountInstance = AccountInstance> {\n previousHashStore?: PreviousHashStore\n new (key: unknown, params?: AccountConfig): T\n create(opts?: AccountConfig): Promise<T>\n fromMnemonic(mnemonic: Mnemonic): Promise<T>\n fromPhrase(phrase: string): Promise<AccountInstance>\n fromPrivateKey(key: ArrayBuffer | string): Promise<AccountInstance>\n is(value: unknown): T | undefined\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Account.ts"],"sourcesContent":["export * from './Account'\n","import { KeyPairInstance } from '@xyo-network/key-model'\nimport { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport type { Mnemonic } from 'ethers'\n\nexport const ethMessagePrefix = '\\u0019Ethereum Signed Message:\\n'\n\nexport interface PhraseInitializationConfig {\n phrase: string\n}\nexport interface PrivateKeyInitializationConfig {\n privateKey: ArrayBuffer\n}\nexport interface MnemonicInitializationConfig {\n mnemonic: string\n path?: string\n}\nexport interface AccountOptions {\n previousHash?: ArrayBuffer\n}\n\nexport type InitializationConfig = PhraseInitializationConfig | PrivateKeyInitializationConfig | MnemonicInitializationConfig\n\nexport type AccountConfig = InitializationConfig & AccountOptions\n\nexport interface AccountInstance extends KeyPairInstance {\n address: string\n addressBytes: ArrayBuffer | undefined\n previousHash: string | undefined\n previousHashBytes: ArrayBuffer | undefined\n sign: (hash: ArrayBuffer, previousHash: ArrayBuffer | undefined) => ArrayBuffer | Promise<ArrayBuffer>\n verify: (msg: ArrayBuffer, signature: ArrayBuffer) => boolean | Promise<boolean>\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isAccountInstance = (account: any): account is AccountInstance => {\n return typeof account === 'object' && typeof account['address'] === 'string'\n}\n\nexport interface AccountStatic<T extends AccountInstance = AccountInstance> {\n previousHashStore?: PreviousHashStore\n new (key: unknown, params?: AccountConfig): T\n create(opts?: AccountConfig): Promise<T>\n fromMnemonic(mnemonic: Mnemonic): Promise<T>\n fromPhrase(phrase: string): Promise<AccountInstance>\n fromPrivateKey(key: ArrayBuffer | string): Promise<AccountInstance>\n is(value: unknown): T | undefined\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;ACIO,IAAMA,mBAAmB;AA8BzB,IAAMC,oBAAoB,wBAACC,YAAAA;AAChC,SAAO,OAAOA,YAAY,YAAY,OAAOA,QAAQ,SAAA,MAAe;AACtE,GAFiC;","names":["ethMessagePrefix","isAccountInstance","account"]}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
1
4
|
// src/Account.ts
|
|
2
5
|
var ethMessagePrefix = "Ethereum Signed Message:\n";
|
|
3
|
-
var isAccountInstance = (account) => {
|
|
6
|
+
var isAccountInstance = /* @__PURE__ */ __name((account) => {
|
|
4
7
|
return typeof account === "object" && typeof account["address"] === "string";
|
|
5
|
-
};
|
|
8
|
+
}, "isAccountInstance");
|
|
6
9
|
export {
|
|
7
10
|
ethMessagePrefix,
|
|
8
11
|
isAccountInstance
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Account.ts"],"sourcesContent":["import { KeyPairInstance } from '@xyo-network/key-model'\nimport { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport type { Mnemonic } from 'ethers'\n\nexport const ethMessagePrefix = '\\u0019Ethereum Signed Message:\\n'\n\nexport interface PhraseInitializationConfig {\n phrase: string\n}\nexport interface PrivateKeyInitializationConfig {\n privateKey: ArrayBuffer\n}\nexport interface MnemonicInitializationConfig {\n mnemonic: string\n path?: string\n}\nexport interface AccountOptions {\n previousHash?: ArrayBuffer\n}\n\nexport type InitializationConfig = PhraseInitializationConfig | PrivateKeyInitializationConfig | MnemonicInitializationConfig\n\nexport type AccountConfig = InitializationConfig & AccountOptions\n\nexport interface AccountInstance extends KeyPairInstance {\n address: string\n addressBytes: ArrayBuffer | undefined\n previousHash: string | undefined\n previousHashBytes: ArrayBuffer | undefined\n sign: (hash: ArrayBuffer, previousHash: ArrayBuffer | undefined) => ArrayBuffer | Promise<ArrayBuffer>\n verify: (msg: ArrayBuffer, signature: ArrayBuffer) => boolean | Promise<boolean>\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isAccountInstance = (account: any): account is AccountInstance => {\n return typeof account === 'object' && typeof account['address'] === 'string'\n}\n\nexport interface AccountStatic<T extends AccountInstance = AccountInstance> {\n previousHashStore?: PreviousHashStore\n new (key: unknown, params?: AccountConfig): T\n create(opts?: AccountConfig): Promise<T>\n fromMnemonic(mnemonic: Mnemonic): Promise<T>\n fromPhrase(phrase: string): Promise<AccountInstance>\n fromPrivateKey(key: ArrayBuffer | string): Promise<AccountInstance>\n is(value: unknown): T | undefined\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Account.ts"],"sourcesContent":["import { KeyPairInstance } from '@xyo-network/key-model'\nimport { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport type { Mnemonic } from 'ethers'\n\nexport const ethMessagePrefix = '\\u0019Ethereum Signed Message:\\n'\n\nexport interface PhraseInitializationConfig {\n phrase: string\n}\nexport interface PrivateKeyInitializationConfig {\n privateKey: ArrayBuffer\n}\nexport interface MnemonicInitializationConfig {\n mnemonic: string\n path?: string\n}\nexport interface AccountOptions {\n previousHash?: ArrayBuffer\n}\n\nexport type InitializationConfig = PhraseInitializationConfig | PrivateKeyInitializationConfig | MnemonicInitializationConfig\n\nexport type AccountConfig = InitializationConfig & AccountOptions\n\nexport interface AccountInstance extends KeyPairInstance {\n address: string\n addressBytes: ArrayBuffer | undefined\n previousHash: string | undefined\n previousHashBytes: ArrayBuffer | undefined\n sign: (hash: ArrayBuffer, previousHash: ArrayBuffer | undefined) => ArrayBuffer | Promise<ArrayBuffer>\n verify: (msg: ArrayBuffer, signature: ArrayBuffer) => boolean | Promise<boolean>\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isAccountInstance = (account: any): account is AccountInstance => {\n return typeof account === 'object' && typeof account['address'] === 'string'\n}\n\nexport interface AccountStatic<T extends AccountInstance = AccountInstance> {\n previousHashStore?: PreviousHashStore\n new (key: unknown, params?: AccountConfig): T\n create(opts?: AccountConfig): Promise<T>\n fromMnemonic(mnemonic: Mnemonic): Promise<T>\n fromPhrase(phrase: string): Promise<AccountInstance>\n fromPrivateKey(key: ArrayBuffer | string): Promise<AccountInstance>\n is(value: unknown): T | undefined\n}\n"],"mappings":";;;;AAIO,IAAMA,mBAAmB;AA8BzB,IAAMC,oBAAoB,wBAACC,YAAAA;AAChC,SAAO,OAAOA,YAAY,YAAY,OAAOA,QAAQ,SAAA,MAAe;AACtE,GAFiC;","names":["ethMessagePrefix","isAccountInstance","account"]}
|
package/dist/node/index.cjs
CHANGED
|
@@ -3,6 +3,7 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
6
7
|
var __export = (target, all) => {
|
|
7
8
|
for (var name in all)
|
|
8
9
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -27,9 +28,9 @@ module.exports = __toCommonJS(src_exports);
|
|
|
27
28
|
|
|
28
29
|
// src/Account.ts
|
|
29
30
|
var ethMessagePrefix = "Ethereum Signed Message:\n";
|
|
30
|
-
var isAccountInstance = (account) => {
|
|
31
|
+
var isAccountInstance = /* @__PURE__ */ __name((account) => {
|
|
31
32
|
return typeof account === "object" && typeof account["address"] === "string";
|
|
32
|
-
};
|
|
33
|
+
}, "isAccountInstance");
|
|
33
34
|
// Annotate the CommonJS export names for ESM import in node:
|
|
34
35
|
0 && (module.exports = {
|
|
35
36
|
ethMessagePrefix,
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Account.ts"],"sourcesContent":["export * from './Account'\n","import { KeyPairInstance } from '@xyo-network/key-model'\nimport { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport type { Mnemonic } from 'ethers'\n\nexport const ethMessagePrefix = '\\u0019Ethereum Signed Message:\\n'\n\nexport interface PhraseInitializationConfig {\n phrase: string\n}\nexport interface PrivateKeyInitializationConfig {\n privateKey: ArrayBuffer\n}\nexport interface MnemonicInitializationConfig {\n mnemonic: string\n path?: string\n}\nexport interface AccountOptions {\n previousHash?: ArrayBuffer\n}\n\nexport type InitializationConfig = PhraseInitializationConfig | PrivateKeyInitializationConfig | MnemonicInitializationConfig\n\nexport type AccountConfig = InitializationConfig & AccountOptions\n\nexport interface AccountInstance extends KeyPairInstance {\n address: string\n addressBytes: ArrayBuffer | undefined\n previousHash: string | undefined\n previousHashBytes: ArrayBuffer | undefined\n sign: (hash: ArrayBuffer, previousHash: ArrayBuffer | undefined) => ArrayBuffer | Promise<ArrayBuffer>\n verify: (msg: ArrayBuffer, signature: ArrayBuffer) => boolean | Promise<boolean>\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isAccountInstance = (account: any): account is AccountInstance => {\n return typeof account === 'object' && typeof account['address'] === 'string'\n}\n\nexport interface AccountStatic<T extends AccountInstance = AccountInstance> {\n previousHashStore?: PreviousHashStore\n new (key: unknown, params?: AccountConfig): T\n create(opts?: AccountConfig): Promise<T>\n fromMnemonic(mnemonic: Mnemonic): Promise<T>\n fromPhrase(phrase: string): Promise<AccountInstance>\n fromPrivateKey(key: ArrayBuffer | string): Promise<AccountInstance>\n is(value: unknown): T | undefined\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Account.ts"],"sourcesContent":["export * from './Account'\n","import { KeyPairInstance } from '@xyo-network/key-model'\nimport { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport type { Mnemonic } from 'ethers'\n\nexport const ethMessagePrefix = '\\u0019Ethereum Signed Message:\\n'\n\nexport interface PhraseInitializationConfig {\n phrase: string\n}\nexport interface PrivateKeyInitializationConfig {\n privateKey: ArrayBuffer\n}\nexport interface MnemonicInitializationConfig {\n mnemonic: string\n path?: string\n}\nexport interface AccountOptions {\n previousHash?: ArrayBuffer\n}\n\nexport type InitializationConfig = PhraseInitializationConfig | PrivateKeyInitializationConfig | MnemonicInitializationConfig\n\nexport type AccountConfig = InitializationConfig & AccountOptions\n\nexport interface AccountInstance extends KeyPairInstance {\n address: string\n addressBytes: ArrayBuffer | undefined\n previousHash: string | undefined\n previousHashBytes: ArrayBuffer | undefined\n sign: (hash: ArrayBuffer, previousHash: ArrayBuffer | undefined) => ArrayBuffer | Promise<ArrayBuffer>\n verify: (msg: ArrayBuffer, signature: ArrayBuffer) => boolean | Promise<boolean>\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isAccountInstance = (account: any): account is AccountInstance => {\n return typeof account === 'object' && typeof account['address'] === 'string'\n}\n\nexport interface AccountStatic<T extends AccountInstance = AccountInstance> {\n previousHashStore?: PreviousHashStore\n new (key: unknown, params?: AccountConfig): T\n create(opts?: AccountConfig): Promise<T>\n fromMnemonic(mnemonic: Mnemonic): Promise<T>\n fromPhrase(phrase: string): Promise<AccountInstance>\n fromPrivateKey(key: ArrayBuffer | string): Promise<AccountInstance>\n is(value: unknown): T | undefined\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;ACIO,IAAMA,mBAAmB;AA8BzB,IAAMC,oBAAoB,wBAACC,YAAAA;AAChC,SAAO,OAAOA,YAAY,YAAY,OAAOA,QAAQ,SAAA,MAAe;AACtE,GAFiC;","names":["ethMessagePrefix","isAccountInstance","account"]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
1
4
|
// src/Account.ts
|
|
2
5
|
var ethMessagePrefix = "Ethereum Signed Message:\n";
|
|
3
|
-
var isAccountInstance = (account) => {
|
|
6
|
+
var isAccountInstance = /* @__PURE__ */ __name((account) => {
|
|
4
7
|
return typeof account === "object" && typeof account["address"] === "string";
|
|
5
|
-
};
|
|
8
|
+
}, "isAccountInstance");
|
|
6
9
|
export {
|
|
7
10
|
ethMessagePrefix,
|
|
8
11
|
isAccountInstance
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Account.ts"],"sourcesContent":["import { KeyPairInstance } from '@xyo-network/key-model'\nimport { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport type { Mnemonic } from 'ethers'\n\nexport const ethMessagePrefix = '\\u0019Ethereum Signed Message:\\n'\n\nexport interface PhraseInitializationConfig {\n phrase: string\n}\nexport interface PrivateKeyInitializationConfig {\n privateKey: ArrayBuffer\n}\nexport interface MnemonicInitializationConfig {\n mnemonic: string\n path?: string\n}\nexport interface AccountOptions {\n previousHash?: ArrayBuffer\n}\n\nexport type InitializationConfig = PhraseInitializationConfig | PrivateKeyInitializationConfig | MnemonicInitializationConfig\n\nexport type AccountConfig = InitializationConfig & AccountOptions\n\nexport interface AccountInstance extends KeyPairInstance {\n address: string\n addressBytes: ArrayBuffer | undefined\n previousHash: string | undefined\n previousHashBytes: ArrayBuffer | undefined\n sign: (hash: ArrayBuffer, previousHash: ArrayBuffer | undefined) => ArrayBuffer | Promise<ArrayBuffer>\n verify: (msg: ArrayBuffer, signature: ArrayBuffer) => boolean | Promise<boolean>\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isAccountInstance = (account: any): account is AccountInstance => {\n return typeof account === 'object' && typeof account['address'] === 'string'\n}\n\nexport interface AccountStatic<T extends AccountInstance = AccountInstance> {\n previousHashStore?: PreviousHashStore\n new (key: unknown, params?: AccountConfig): T\n create(opts?: AccountConfig): Promise<T>\n fromMnemonic(mnemonic: Mnemonic): Promise<T>\n fromPhrase(phrase: string): Promise<AccountInstance>\n fromPrivateKey(key: ArrayBuffer | string): Promise<AccountInstance>\n is(value: unknown): T | undefined\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Account.ts"],"sourcesContent":["import { KeyPairInstance } from '@xyo-network/key-model'\nimport { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport type { Mnemonic } from 'ethers'\n\nexport const ethMessagePrefix = '\\u0019Ethereum Signed Message:\\n'\n\nexport interface PhraseInitializationConfig {\n phrase: string\n}\nexport interface PrivateKeyInitializationConfig {\n privateKey: ArrayBuffer\n}\nexport interface MnemonicInitializationConfig {\n mnemonic: string\n path?: string\n}\nexport interface AccountOptions {\n previousHash?: ArrayBuffer\n}\n\nexport type InitializationConfig = PhraseInitializationConfig | PrivateKeyInitializationConfig | MnemonicInitializationConfig\n\nexport type AccountConfig = InitializationConfig & AccountOptions\n\nexport interface AccountInstance extends KeyPairInstance {\n address: string\n addressBytes: ArrayBuffer | undefined\n previousHash: string | undefined\n previousHashBytes: ArrayBuffer | undefined\n sign: (hash: ArrayBuffer, previousHash: ArrayBuffer | undefined) => ArrayBuffer | Promise<ArrayBuffer>\n verify: (msg: ArrayBuffer, signature: ArrayBuffer) => boolean | Promise<boolean>\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isAccountInstance = (account: any): account is AccountInstance => {\n return typeof account === 'object' && typeof account['address'] === 'string'\n}\n\nexport interface AccountStatic<T extends AccountInstance = AccountInstance> {\n previousHashStore?: PreviousHashStore\n new (key: unknown, params?: AccountConfig): T\n create(opts?: AccountConfig): Promise<T>\n fromMnemonic(mnemonic: Mnemonic): Promise<T>\n fromPhrase(phrase: string): Promise<AccountInstance>\n fromPrivateKey(key: ArrayBuffer | string): Promise<AccountInstance>\n is(value: unknown): T | undefined\n}\n"],"mappings":";;;;AAIO,IAAMA,mBAAmB;AA8BzB,IAAMC,oBAAoB,wBAACC,YAAAA;AAChC,SAAO,OAAOA,YAAY,YAAY,OAAOA,QAAQ,SAAA,MAAe;AACtE,GAFiC;","names":["ethMessagePrefix","isAccountInstance","account"]}
|
package/package.json
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/key-model": "~2.
|
|
14
|
-
"@xyo-network/previous-hash-store-model": "~2.
|
|
13
|
+
"@xyo-network/key-model": "~2.85.0",
|
|
14
|
+
"@xyo-network/previous-hash-store-model": "~2.85.0"
|
|
15
15
|
},
|
|
16
16
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
17
17
|
"devDependencies": {
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
|
-
"version": "2.
|
|
61
|
+
"version": "2.85.0",
|
|
62
62
|
"type": "module"
|
|
63
63
|
}
|