-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 KB
/
package.json
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
{
"name": "@matter/intermediate-models",
"version": "0.0.0-git",
"description": "Matter.js intermediate models",
"private": true,
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"./*": {
"import": "./dist/esm/*.js",
"types": "./dist/esm/*.d.ts"
}
},
"scripts": {
"clean": "matter-build clean",
"build": "matter-build",
"build-clean": "matter-build --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/project-chip/matter.js.git"
},
"author": "matter.js authors",
"contributors": [
"Ingo Fischer <[email protected]>",
"Greg Lauckhart <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/project-chip/matter.js/issues"
},
"homepage": "https://github.com/project-chip/matter.js#readme",
"devDependencies": {
"@matter/model": "*",
"@matter/tools": "*",
"@matter/testing": "*"
}
}