@ocap/wallet 1.28.1 → 1.28.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_rolldown_runtime = require('./_virtual/rolldown_runtime.
|
|
1
|
+
const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
|
|
2
2
|
let _ocap_util = require("@ocap/util");
|
|
3
3
|
let _ocap_mcrypto = require("@ocap/mcrypto");
|
|
4
4
|
let _arcblock_did = require("@arcblock/did");
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/wallet",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.3",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "Utility function to create and use an forge compatible crypto wallet",
|
|
5
6
|
"keywords": [
|
|
6
7
|
"crypto",
|
|
@@ -21,14 +22,14 @@
|
|
|
21
22
|
"homepage": "https://www.arcblock.io/docs/blockchain-utils",
|
|
22
23
|
"license": "Apache-2.0",
|
|
23
24
|
"sideEffects": false,
|
|
24
|
-
"main": "./lib/index.
|
|
25
|
-
"module": "./esm/index.
|
|
26
|
-
"types": "./esm/index.d.
|
|
25
|
+
"main": "./lib/index.cjs",
|
|
26
|
+
"module": "./esm/index.mjs",
|
|
27
|
+
"types": "./esm/index.d.mts",
|
|
27
28
|
"exports": {
|
|
28
29
|
".": {
|
|
29
|
-
"types": "./esm/index.d.
|
|
30
|
-
"import": "./esm/index.
|
|
31
|
-
"default": "./lib/index.
|
|
30
|
+
"types": "./esm/index.d.mts",
|
|
31
|
+
"import": "./esm/index.mjs",
|
|
32
|
+
"default": "./lib/index.cjs"
|
|
32
33
|
}
|
|
33
34
|
},
|
|
34
35
|
"files": [
|
|
@@ -53,10 +54,10 @@
|
|
|
53
54
|
"url": "https://github.com/ArcBlock/blockchain/issues"
|
|
54
55
|
},
|
|
55
56
|
"dependencies": {
|
|
56
|
-
"@arcblock/did": "1.28.
|
|
57
|
-
"@arcblock/jwt": "1.28.
|
|
58
|
-
"@ocap/
|
|
59
|
-
"@ocap/
|
|
57
|
+
"@arcblock/did": "1.28.3",
|
|
58
|
+
"@arcblock/jwt": "1.28.3",
|
|
59
|
+
"@ocap/mcrypto": "1.28.3",
|
|
60
|
+
"@ocap/util": "1.28.3"
|
|
60
61
|
},
|
|
61
62
|
"scripts": {
|
|
62
63
|
"lint": "eslint tests src",
|
|
@@ -64,6 +65,6 @@
|
|
|
64
65
|
"test": "jest --forceExit --detectOpenHandles",
|
|
65
66
|
"coverage": "npm run test -- --coverage",
|
|
66
67
|
"build": "tsdown",
|
|
67
|
-
"build:watch": "tsdown
|
|
68
|
+
"build:watch": "tsdown -w"
|
|
68
69
|
}
|
|
69
70
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|