-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
83 lines (83 loc) · 2.06 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
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
{
"name": "@matter/nodejs-ble",
"version": "0.0.0-git",
"description": "Matter BLE support for node.js",
"keywords": [
"iot",
"home automation",
"matter",
"smart device",
"ble"
],
"license": "Apache-2.0",
"author": "matter.js authors",
"contributors": [
"Ingo Fischer <[email protected]>"
],
"bugs": {
"url": "https://github.com/project-chip/matter.js/issues"
},
"homepage": "https://github.com/project-chip/matter.js",
"repository": {
"type": "git",
"url": "git+https://github.com/project-chip/matter.js.git"
},
"scripts": {
"clean": "matter-build clean",
"build": "matter-build",
"build-clean": "matter-build --clean"
},
"dependencies": {
"@matter/general": "*",
"@matter/types": "*",
"@matter/protocol": "*"
},
"devDependencies": {
"@matter/tools": "*"
},
"optionalDependencies": {
"@stoprocent/bleno": "^0.8.1",
"@stoprocent/noble": "^1.18.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"src/**/*",
"require/**/*",
"LICENSE"
],
"type": "module",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./require": {
"types": "./require/require.d.ts",
"esbuild": "./require/require.cjs",
"import": "./require/require.mjs",
"require": "./require/require.cjs"
}
},
"typesVersions": {
"*": {
".": [
"/dist/cjs/index.d.ts"
]
}
},
"publishConfig": {
"access": "public"
}
}