-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 KB
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
{
"name": "blutooth",
"version": "4.2.3",
"description": "The type-safe framework for interacting with Bluetooth Low Energy devices from the web.",
"keywords": [
"blu",
"bluetooth",
"bluetooth low energy",
"web bluetooth",
"typescript"
],
"license": "MIT",
"homepage": "https://github.com/maxherrmann/blu#readme",
"bugs": "https://github.com/maxherrmann/blu/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/maxherrmann/blu.git"
},
"author": {
"name": "Max Herrmann",
"email": "[email protected]",
"url": "https://github.com/maxherrmann"
},
"funding": "https://github.com/sponsors/maxherrmann",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "sh ./build.sh",
"format": "prettier --write .",
"lint": "eslint ."
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.10",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^25.0.3",
"@types/web-bluetooth": "^0.0.21",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.27.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"publint": "^0.3.12",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
},
"dependencies": {
"jaset": "^1.1.0",
"zod": "^4.1.8"
}
}