@zwave-js/bindings-browser 14.3.8-0-pr-7581-04bf3a1
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/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zwave-js/bindings-browser",
|
|
3
|
+
"version": "14.3.8-0-pr-7581-04bf3a1",
|
|
4
|
+
"description": "zwave-js: Host bindings for the browser",
|
|
5
|
+
"keywords": [],
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./db": {
|
|
12
|
+
"@@dev": "./src/db/browser.ts",
|
|
13
|
+
"default": "./build/db/browser.js"
|
|
14
|
+
},
|
|
15
|
+
"./fs": {
|
|
16
|
+
"@@dev": "./src/fs/browser.ts",
|
|
17
|
+
"default": "./build/fs/browser.js"
|
|
18
|
+
},
|
|
19
|
+
"./serial": {
|
|
20
|
+
"@@dev": "./src/serial/browser.ts",
|
|
21
|
+
"default": "./build/serial/browser.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"build/**/*.{js,cjs,mjs,d.ts,d.cts,d.mts,map}",
|
|
26
|
+
"build/**/package.json"
|
|
27
|
+
],
|
|
28
|
+
"author": {
|
|
29
|
+
"name": "AlCalzone",
|
|
30
|
+
"email": "d.griesel@gmx.net"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"homepage": "https://github.com/zwave-js/node-zwave-js#readme",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/zwave-js/node-zwave-js.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/zwave-js/node-zwave-js/issues"
|
|
40
|
+
},
|
|
41
|
+
"funding": {
|
|
42
|
+
"url": "https://github.com/sponsors/AlCalzone/"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">= 20"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "tsc -b tsconfig.json --pretty",
|
|
49
|
+
"clean": "del-cli build/ \"*.tsbuildinfo\""
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/w3c-web-serial": "^1.0.7",
|
|
53
|
+
"@zwave-js/serial": "14.3.8-0-pr-7581-04bf3a1",
|
|
54
|
+
"@zwave-js/shared": "14.3.8-0-pr-7581-04bf3a1",
|
|
55
|
+
"del-cli": "^6.0.0",
|
|
56
|
+
"typescript": "5.7.3",
|
|
57
|
+
"zwave-js": "14.3.8-0-pr-7581-04bf3a1"
|
|
58
|
+
},
|
|
59
|
+
"stableVersion": "14.3.7"
|
|
60
|
+
}
|