@fleet-sdk/serializer 0.3.1 → 0.3.4

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,13 +1,22 @@
1
1
  # @fleet-sdk/serializer
2
2
 
3
- ## 0.3.1
3
+ ## 0.3.4
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - Updated dependencies [69daea5]
8
- - Updated dependencies [69daea5]
9
- - @fleet-sdk/common@0.3.1
10
- - @fleet-sdk/crypto@0.3.1
7
+ - 9f02ca0: Fix ESM and CJS modules export
8
+ - Updated dependencies [9f02ca0]
9
+ - @fleet-sdk/common@0.3.4
10
+ - @fleet-sdk/crypto@0.3.4
11
+
12
+ ## 0.3.2
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [1d6e259]
17
+ - Updated dependencies [1d6e259]
18
+ - @fleet-sdk/common@0.3.2
19
+ - @fleet-sdk/crypto@0.3.2
11
20
 
12
21
  ## 0.2.3
13
22
 
@@ -972,4 +972,4 @@ exports.parse = parse;
972
972
  exports.serializeBox = serializeBox;
973
973
  exports.serializeTransaction = serializeTransaction;
974
974
  //# sourceMappingURL=out.js.map
975
- //# sourceMappingURL=index.cjs.js.map
975
+ //# sourceMappingURL=index.js.map
@@ -935,4 +935,4 @@ function getDistinctTokenIds(outputs) {
935
935
 
936
936
  export { DataSerializer, SBigInt, SBigIntType, SBool, SBoolType, SByte, SByteType, SColl, SCollType, SConstant, SGenericType, SGroupElement, SGroupElementType, SInt, SIntType, SLong, SLongType, SMonomorphicType, SPair, SPrimitiveType, SShort, SShortType, SSigmaProp, SSigmaPropType, STupleType, SType, SUnit, SUnitType, TypeSerializer, estimateBoxSize, estimateVLQSize, isColl, isTuple, parse, serializeBox, serializeTransaction };
937
937
  //# sourceMappingURL=out.js.map
938
- //# sourceMappingURL=index.esm.js.map
938
+ //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,14 +1,21 @@
1
1
  {
2
2
  "name": "@fleet-sdk/serializer",
3
- "version": "0.3.1",
3
+ "version": "0.3.4",
4
4
  "description": "Ergo constant serializer and parser.",
5
- "main": "./dist/index.cjs.js",
6
- "module": "./dist/index.esm.js",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
8
8
  "exports": {
9
- "types": "./dist/index.d.ts",
10
- "require": "./dist/index.cjs.js",
11
- "import": "./dist/index.esm.js"
9
+ ".": {
10
+ "import": {
11
+ "types": "./dist/index.d.mts",
12
+ "default": "./dist/index.mjs"
13
+ },
14
+ "require": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ }
18
+ }
12
19
  },
13
20
  "sideEffects": false,
14
21
  "repository": "fleet-sdk/fleet",
@@ -24,8 +31,8 @@
24
31
  "serialization"
25
32
  ],
26
33
  "dependencies": {
27
- "@fleet-sdk/common": "^0.3.1",
28
- "@fleet-sdk/crypto": "^0.3.1"
34
+ "@fleet-sdk/common": "^0.3.4",
35
+ "@fleet-sdk/crypto": "^0.3.4"
29
36
  },
30
37
  "engines": {
31
38
  "node": ">=14"
File without changes
File without changes