@metamask/snaps-sdk 6.5.0 → 6.5.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 (2) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [6.5.1]
10
+ ### Fixed
11
+ - Fix package exports ([#2737](https://github.com/MetaMask/snaps/pull/2737))
12
+
9
13
  ## [6.5.0]
10
14
  ### Added
11
15
  - Add `center` prop to `Box` component ([#2716](https://github.com/MetaMask/snaps/pull/2716))
@@ -255,7 +259,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
255
259
  ### Added
256
260
  - Initial release of this package.
257
261
 
258
- [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.5.0...HEAD
262
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.5.1...HEAD
263
+ [6.5.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.5.0...@metamask/snaps-sdk@6.5.1
259
264
  [6.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.4.0...@metamask/snaps-sdk@6.5.0
260
265
  [6.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.3.0...@metamask/snaps-sdk@6.4.0
261
266
  [6.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.2.1...@metamask/snaps-sdk@6.3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/snaps-sdk",
3
- "version": "6.5.0",
3
+ "version": "6.5.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/MetaMask/snaps.git"
@@ -13,38 +13,38 @@
13
13
  "default": "./dist/index.mjs"
14
14
  },
15
15
  "require": {
16
- "default": "./dist/index.cjs",
17
- "types": "./dist/index.d.cts"
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
18
  }
19
19
  },
20
20
  "./jsx": {
21
21
  "import": {
22
- "types": "./dist/types/jsx/index.d.mts",
22
+ "types": "./dist/jsx/index.d.mts",
23
23
  "default": "./dist/jsx/index.mjs"
24
24
  },
25
25
  "require": {
26
- "default": "./dist/jsx/index.cjs",
27
- "types": "./dist/types/jsx/index.d.cts"
26
+ "types": "./dist/jsx/index.d.cts",
27
+ "default": "./dist/jsx/index.cjs"
28
28
  }
29
29
  },
30
30
  "./jsx-runtime": {
31
31
  "import": {
32
- "types": "./dist/types/jsx/jsx-runtime.d.mts",
32
+ "types": "./dist/jsx/jsx-runtime.d.mts",
33
33
  "default": "./dist/jsx/jsx-runtime.mjs"
34
34
  },
35
35
  "require": {
36
- "default": "./dist/jsx/jsx-runtime.cjs",
37
- "types": "./dist/types/jsx/jsx-runtime.d.cts"
36
+ "types": "./dist/jsx/jsx-runtime.d.cts",
37
+ "default": "./dist/jsx/jsx-runtime.cjs"
38
38
  }
39
39
  },
40
40
  "./jsx-dev-runtime": {
41
41
  "import": {
42
- "types": "./dist/types/jsx/jsx-dev-runtime.d.mts",
42
+ "types": "./dist/jsx/jsx-dev-runtime.d.mts",
43
43
  "default": "./dist/jsx/jsx-dev-runtime.mjs"
44
44
  },
45
45
  "require": {
46
- "default": "./dist/jsx/jsx-dev-runtime.cjs",
47
- "types": "./dist/types/jsx/jsx-dev-runtime.d.cts"
46
+ "types": "./dist/jsx/jsx-dev-runtime.d.cts",
47
+ "default": "./dist/jsx/jsx-dev-runtime.cjs"
48
48
  }
49
49
  },
50
50
  "./package.json": "./package.json"