@fleet-sdk/crypto 0.2.0 → 0.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @fleet-sdk/crypto
2
2
 
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9cbd414]
8
+ - @fleet-sdk/common@0.2.2
9
+
10
+ ## 0.2.1
11
+
12
+ ### Patch Changes
13
+
14
+ - edf2830: Fix module exporting.
15
+ - Updated dependencies [edf2830]
16
+ - @fleet-sdk/common@0.2.1
17
+
3
18
  ## 0.2.0
4
19
 
5
20
  ### Minor Changes
@@ -65,4 +65,4 @@ exports.randomBytes = randomBytes;
65
65
  exports.sha256 = sha256;
66
66
  exports.utf8 = utf8;
67
67
  //# sourceMappingURL=out.js.map
68
- //# sourceMappingURL=index.js.map
68
+ //# sourceMappingURL=index.cjs.js.map
@@ -56,4 +56,4 @@ var randomBytes = randomBytes$1;
56
56
 
57
57
  export { base58, base58check, base64, blake2b256, hex, randomBytes, sha256, utf8 };
58
58
  //# sourceMappingURL=out.js.map
59
- //# sourceMappingURL=index.mjs.map
59
+ //# sourceMappingURL=index.esm.js.map
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@fleet-sdk/crypto",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Ergo blockchain crypto primitives.",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
5
+ "main": "./dist/index.cjs.js",
6
+ "module": "./dist/index.esm.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "exports": {
9
- "require": "./dist/index.js",
10
- "import": "./dist/index.mjs"
9
+ "require": "./dist/index.cjs.js",
10
+ "import": "./dist/index.esm.js"
11
11
  },
12
12
  "sideEffects": true,
13
13
  "repository": "fleet-sdk/fleet",
@@ -27,7 +27,7 @@
27
27
  "dependencies": {
28
28
  "@noble/hashes": "^1.3.1",
29
29
  "@scure/base": "^1.1.1",
30
- "@fleet-sdk/common": "^0.2.0"
30
+ "@fleet-sdk/common": "^0.2.2"
31
31
  },
32
32
  "files": [
33
33
  "src",
@@ -40,6 +40,6 @@
40
40
  "README.md"
41
41
  ],
42
42
  "scripts": {
43
- "build": "tsup"
43
+ "build": "tsup --config ../../tsup.config.ts"
44
44
  }
45
45
  }
File without changes
File without changes