@matter/main 0.11.0-alpha.0-20241005-e3e4e4a7a → 0.11.0-alpha.0-20241007-547af42a8
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@matter/main",
|
3
|
-
"version": "0.11.0-alpha.0-
|
3
|
+
"version": "0.11.0-alpha.0-20241007-547af42a8",
|
4
4
|
"description": "Matter.js main entrypoint",
|
5
5
|
"keywords": [
|
6
6
|
"iot",
|
@@ -42,18 +42,18 @@
|
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
44
|
"@noble/curves": "^1.5.0",
|
45
|
-
"@matter/general": "0.11.0-alpha.0-
|
46
|
-
"@matter/model": "0.11.0-alpha.0-
|
47
|
-
"@matter/types": "0.11.0-alpha.0-
|
48
|
-
"@matter/protocol": "0.11.0-alpha.0-
|
49
|
-
"@matter/node": "0.11.0-alpha.0-
|
45
|
+
"@matter/general": "0.11.0-alpha.0-20241007-547af42a8",
|
46
|
+
"@matter/model": "0.11.0-alpha.0-20241007-547af42a8",
|
47
|
+
"@matter/types": "0.11.0-alpha.0-20241007-547af42a8",
|
48
|
+
"@matter/protocol": "0.11.0-alpha.0-20241007-547af42a8",
|
49
|
+
"@matter/node": "0.11.0-alpha.0-20241007-547af42a8"
|
50
50
|
},
|
51
51
|
"optionalDependencies": {
|
52
|
-
"@matter/nodejs": "0.11.0-alpha.0-
|
53
|
-
"@matter/react-native": "0.11.0-alpha.0-
|
52
|
+
"@matter/nodejs": "0.11.0-alpha.0-20241007-547af42a8",
|
53
|
+
"@matter/react-native": "0.11.0-alpha.0-20241007-547af42a8"
|
54
54
|
},
|
55
55
|
"devDependencies": {
|
56
|
-
"@matter/tools": "0.11.0-alpha.0-
|
56
|
+
"@matter/tools": "0.11.0-alpha.0-20241007-547af42a8"
|
57
57
|
},
|
58
58
|
"files": [
|
59
59
|
"dist/**/*",
|
@@ -143,8 +143,8 @@
|
|
143
143
|
"default": "./dist/esm/forwards/endpoints/*.js"
|
144
144
|
},
|
145
145
|
"require": {
|
146
|
-
"types": "./dist/cjs/forwards/endpoints
|
147
|
-
"default": "./dist/cjs/forwards/endpoints
|
146
|
+
"types": "./dist/cjs/forwards/endpoints/*.d.ts",
|
147
|
+
"default": "./dist/cjs/forwards/endpoints/*.js"
|
148
148
|
}
|
149
149
|
},
|
150
150
|
"./*": {
|
@@ -153,8 +153,8 @@
|
|
153
153
|
"default": "./dist/esm/*.js"
|
154
154
|
},
|
155
155
|
"require": {
|
156
|
-
"types": "./dist/cjs
|
157
|
-
"default": "./dist/cjs
|
156
|
+
"types": "./dist/cjs/*.d.ts",
|
157
|
+
"default": "./dist/cjs/*.js"
|
158
158
|
}
|
159
159
|
}
|
160
160
|
},
|
@@ -162,7 +162,7 @@
|
|
162
162
|
"typesVersions": {
|
163
163
|
"*": {
|
164
164
|
".": [
|
165
|
-
"/dist/cjs/
|
165
|
+
"/dist/cjs/import.d.ts"
|
166
166
|
]
|
167
167
|
}
|
168
168
|
},
|
package/src/tsconfig.json
CHANGED