-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.31 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@modum-io/modblue",
"version": "12.0.7",
"description": "BLE module using dbus or hci.",
"homepage": "https://modum-io.github.io/modblue/",
"bugs": {
"url": "https://github.com/modum-io/modblue/issues"
},
"license": "UNLICENSED",
"author": {
"name": "modum.io AG",
"email": "support@modum.io"
},
"repository": {
"type": "git",
"url": "https://github.com/modum-io/modblue.git"
},
"main": "lib/index.js",
"module": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./hci": "./lib/bindings/hci/index.js",
"./dbus": "./lib/bindings/dbus/index.js",
"./web": "./lib/bindings/web/index.js",
"./mac": "./lib/bindings/mac/index.js",
"./win": "./lib/bindings/win/index.js",
"./package.json": "./package.json"
},
"type": "commonjs",
"types": "lib/index.d.ts",
"typesVersions": {
"*": {
"hci": [
"lib/bindings/hci"
],
"dbus": [
"lib/bindings/dbus"
],
"web": [
"lib/bindings/web"
],
"mac": [
"lib/bindings/mac"
],
"win": [
"lib/bindings/win"
]
}
},
"files": [
"lib",
"native",
"binding.gyp"
],
"scripts": {
"install": "prebuild-install --verbose || node-gyp rebuild",
"build": "tsc",
"docs": "typedoc",
"release": "standard-version -a",
"pretty-quick": "npx pretty-quick --staged",
"prebuild:node": "npx prebuild -t 16.0.0 -t 15.0.0 -t 14.0.0 -t 13.0.0 -t 12.0.0 -t 11.0.0",
"prebuild:electron": "npx prebuild -r electron -t 13.0.0-beta.2 -t 12.0.0-beta.1 -t 11.0.0-beta.11 -t 10.0.0-beta.1"
},
"dependencies": {
"async-mutex": "0.3.2",
"nan": "2.15.0",
"napi-thread-safe-callback": "0.0.6",
"node-addon-api": "4.2.0",
"prebuild-install": "6.1.4",
"tiny-typed-emitter": "2.1.0"
},
"peerDependencies": {
"@modum-io/bluetooth-hci-socket": "0.6.x",
"dbus-next": "0.10.x"
},
"devDependencies": {
"@types/node": "16.10.2",
"@types/web-bluetooth": "0.0.11",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"standard-version": "9.3.1",
"typedoc": "0.22.5",
"typescript": "4.4.3"
},
"standard-version": {
"scripts": {
"postbump": "npm run build && npm run docs && git add docs/* && git add lib/*",
"postchangelog": "prettier --write CHANGELOG.md"
}
}
}