@metamask/snaps-execution-environments 11.0.2 → 11.1.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/CHANGELOG.md +14 -1
- package/dist/common/BaseSnapExecutor.cjs.map +1 -1
- package/dist/common/BaseSnapExecutor.d.cts +2 -2
- package/dist/common/BaseSnapExecutor.d.cts.map +1 -1
- package/dist/common/BaseSnapExecutor.d.mts +2 -2
- package/dist/common/BaseSnapExecutor.d.mts.map +1 -1
- package/dist/common/BaseSnapExecutor.mjs.map +1 -1
- package/dist/common/endowments/commonEndowmentFactory.cjs.map +1 -1
- package/dist/common/endowments/commonEndowmentFactory.d.cts +44 -5
- package/dist/common/endowments/commonEndowmentFactory.d.cts.map +1 -1
- package/dist/common/endowments/commonEndowmentFactory.d.mts +44 -5
- package/dist/common/endowments/commonEndowmentFactory.d.mts.map +1 -1
- package/dist/common/endowments/commonEndowmentFactory.mjs.map +1 -1
- package/dist/common/endowments/console.cjs +13 -12
- package/dist/common/endowments/console.cjs.map +1 -1
- package/dist/common/endowments/console.d.cts +8 -7
- package/dist/common/endowments/console.d.cts.map +1 -1
- package/dist/common/endowments/console.d.mts +8 -7
- package/dist/common/endowments/console.d.mts.map +1 -1
- package/dist/common/endowments/console.mjs +13 -12
- package/dist/common/endowments/console.mjs.map +1 -1
- package/dist/common/endowments/index.cjs +1 -1
- package/dist/common/endowments/index.cjs.map +1 -1
- package/dist/common/endowments/index.d.cts +1 -1
- package/dist/common/endowments/index.d.cts.map +1 -1
- package/dist/common/endowments/index.d.mts +1 -1
- package/dist/common/endowments/index.d.mts.map +1 -1
- package/dist/common/endowments/index.mjs +1 -1
- package/dist/common/endowments/index.mjs.map +1 -1
- package/dist/common/endowments/network.cjs +5 -4
- package/dist/common/endowments/network.cjs.map +1 -1
- package/dist/common/endowments/network.d.cts.map +1 -1
- package/dist/common/endowments/network.d.mts.map +1 -1
- package/dist/common/endowments/network.mjs +5 -4
- package/dist/common/endowments/network.mjs.map +1 -1
- package/dist/common/validation.d.cts +17 -17
- package/dist/common/validation.d.mts +17 -17
- package/dist/endowments.cjs +61 -0
- package/dist/endowments.cjs.map +1 -0
- package/dist/endowments.d.cts +59 -0
- package/dist/endowments.d.cts.map +1 -0
- package/dist/endowments.d.mts +59 -0
- package/dist/endowments.d.mts.map +1 -0
- package/dist/endowments.mjs +47 -0
- package/dist/endowments.mjs.map +1 -0
- package/dist/webpack/iframe/bundle.js +1 -1
- package/dist/webpack/node-process/bundle.js +1 -1
- package/dist/webpack/node-thread/bundle.js +1 -1
- package/dist/webpack/webview/index.html +1 -1
- package/package.json +16 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/snaps-execution-environments",
|
|
3
|
-
"version": "11.0
|
|
3
|
+
"version": "11.1.0",
|
|
4
4
|
"description": "Snap sandbox environments for executing SES javascript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -28,6 +28,16 @@
|
|
|
28
28
|
"default": "./dist/index.cjs"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
|
+
"./endowments": {
|
|
32
|
+
"import": {
|
|
33
|
+
"types": "./dist/endowments.d.mts",
|
|
34
|
+
"default": "./dist/endowments.mjs"
|
|
35
|
+
},
|
|
36
|
+
"require": {
|
|
37
|
+
"types": "./dist/endowments.d.cts",
|
|
38
|
+
"default": "./dist/endowments.cjs"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
31
41
|
"./node-process": "./dist/webpack/node-process/bundle.js",
|
|
32
42
|
"./node-thread": "./dist/webpack/node-thread/bundle.js",
|
|
33
43
|
"./package.json": "./package.json"
|
|
@@ -66,15 +76,15 @@
|
|
|
66
76
|
"test:watch": "jest --watch"
|
|
67
77
|
},
|
|
68
78
|
"dependencies": {
|
|
69
|
-
"@metamask/json-rpc-engine": "^10.2.
|
|
79
|
+
"@metamask/json-rpc-engine": "^10.2.4",
|
|
70
80
|
"@metamask/object-multiplex": "^2.1.0",
|
|
71
81
|
"@metamask/post-message-stream": "^10.0.0",
|
|
72
82
|
"@metamask/providers": "^22.1.1",
|
|
73
83
|
"@metamask/rpc-errors": "^7.0.3",
|
|
74
|
-
"@metamask/snaps-sdk": "^11.
|
|
75
|
-
"@metamask/snaps-utils": "^12.
|
|
84
|
+
"@metamask/snaps-sdk": "^11.1.0",
|
|
85
|
+
"@metamask/snaps-utils": "^12.2.0",
|
|
76
86
|
"@metamask/superstruct": "^3.2.1",
|
|
77
|
-
"@metamask/utils": "^11.
|
|
87
|
+
"@metamask/utils": "^11.11.0",
|
|
78
88
|
"readable-stream": "^3.6.2"
|
|
79
89
|
},
|
|
80
90
|
"devDependencies": {
|
|
@@ -82,7 +92,7 @@
|
|
|
82
92
|
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
83
93
|
"@lavamoat/allow-scripts": "^4.0.0",
|
|
84
94
|
"@lavamoat/lavatube": "^1.0.0",
|
|
85
|
-
"@lavamoat/webpack": "^2.
|
|
95
|
+
"@lavamoat/webpack": "^2.1.1",
|
|
86
96
|
"@metamask/auto-changelog": "^5.3.2",
|
|
87
97
|
"@swc/core": "1.11.31",
|
|
88
98
|
"@swc/jest": "^0.2.38",
|