-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "webbluetooth",
"description": "Node.js implementation of the Web Bluetooth Specification",
"license": "MIT",
"version": "3.2.1",
"main": "dist/index.js",
"browser": "dist/browser.js",
"author": "Rob Moran <[email protected]>",
"engines": {
"node": ">=10.20.0 <11.x || >=12.17.0 <13.0 || >=14.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/thegecko/webbluetooth.git"
},
"keywords": [
"web-bluetooth",
"webbluetooth",
"ble",
"bluetooth"
],
"scripts": {
"install": "prebuild-install --backend cmake-js --runtime napi || cmake-js rebuild",
"clean": "yarn clean:cpp && yarn clean:ts",
"clean:cpp": "cmake-js clean && git clean -fx ./prebuilds",
"clean:ts": "git clean -fx ./dist ./docs",
"build:all": "yarn build:cpp && yarn build:ts",
"build:cpp": "cmake-js compile",
"build:ts": "tsc && yarn lint && yarn docs",
"watch": "tsc -w --preserveWatchOutput",
"lint": "eslint . --ext .ts",
"test": "mocha --timeout 10000 test/*.test.js",
"prebuild": "prebuild --backend cmake-js --runtime napi --all --strip --verbose",
"docs": "typedoc"
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^7.3.0",
"node-addon-api": "^8.0.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/web-bluetooth": "^0.0.20",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"mocha": "^11.0.1",
"prebuild": "^13.0.1",
"typedoc": "^0.27.2",
"typescript": "^5.4.5"
},
"binary": {
"napi_versions": [
6
]
}
}