forked from matter-js/matter.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.4 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@matter/nodejs",
"version": "0.0.0-git",
"description": "Node.js platform support for matter.js",
"keywords": [
"iot",
"home automation",
"matter",
"smart device"
],
"license": "Apache-2.0",
"author": "matter.js authors",
"contributors": [
"Martin Turon <mturon@google.com>",
"Marco Fucci di Napoli <mfucci@gmail.com>",
"Ingo Fischer <github@fischer-ka.de>",
"Greg Lauckhart <greg@lauckhart.com>"
],
"bugs": {
"url": "https://github.com/matter-js/matter.js/issues"
},
"homepage": "https://github.com/matter-js/matter.js",
"repository": {
"type": "git",
"url": "git+https://github.com/matter-js/matter.js.git"
},
"engines": {
"node": ">=20.19.0 <22.0.0 || >=22.13.0"
},
"scripts": {
"clean": "matter-build clean",
"build": "matter-build",
"build-clean": "matter-build --clean",
"test": "matter-test",
"coverage": "c8 matter-test esm",
"embed-examples": "embedme **/README.md"
},
"imports": {
"#general": "@matter/general",
"#types": "@matter/types",
"#clusters/*": "@matter/types/clusters/*",
"#node": "@matter/node",
"#protocol": "@matter/protocol",
"#*": "./src/*"
},
"dependencies": {
"@matter/general": "*",
"@matter/node": "*",
"@matter/protocol": "*",
"@matter/types": "*"
},
"devDependencies": {
"@matter/model": "*",
"@matter/protocol": "*",
"@matter/testing": "*",
"@matter/tools": "*",
"@project-chip/matter.js": "*",
"@types/bytebuffer": "^5.0.49"
},
"files": [
"dist/**/*",
"src/**/*",
"LICENSE",
"README.md"
],
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./config": {
"import": {
"types": "./dist/esm/config.d.ts",
"default": "./dist/esm/config.js"
},
"require": {
"types": "./dist/cjs/config.d.ts",
"default": "./dist/cjs/config.js"
}
}
},
"types": "dist/esm/index.d.ts",
"typesVersions": {
"*": {
"interaction": [
"/dist/cjs/protocol/interaction/export.d.ts"
],
"model": [
"/dist/cjs/model/index.d.ts"
],
"securechannel": [
"/dist/cjs/protocol/securechannel/export.d.ts"
],
"behaviors/*": [
"/dist/cjs/behavior/definitions/*/export.d.ts"
],
"devices/*": [
"/dist/cjs/endpoint/definitions/device/*.d.ts"
],
"endpoints/*": [
"/dist/cjs/endpoint/definitions/system/*.d.ts"
],
".": [
"/dist/cjs/export.d.ts"
],
"*": [
"/dist/cjs/*/export.d.ts"
]
}
},
"publishConfig": {
"access": "public"
}
}