-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "@meshtastic/js",
"version": "2.5.9-2",
"description": "Browser library for interfacing with meshtastic devices",
"license": "GPL-3.0-only",
"scripts": {
"build": "tsup && pnpm biome format .",
"generate:docs": "typedoc src/index.ts"
},
"keywords": [
"meshtastic bluetooth serial webserial webbluetooth ble http library typescript javascript"
],
"publishConfig": {
"provenance": true
},
"sideEffects": false,
"type": "module",
"packageManager": "[email protected]",
"module": "./dist/index.ts",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.ts",
"types": "./dist/index.d.ts"
}
},
"files": ["dist"],
"bugs": {
"url": "https://github.com/meshtastic/js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meshtastic/js.git"
},
"dependencies": {
"@bufbuild/protobuf": "^2.2.1",
"@meshtastic/protobufs": "npm:@jsr/meshtastic__protobufs@^2.5.9",
"crc": "^4.3.2",
"ste-simple-events": "^3.0.11",
"tslog": "^4.9.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/node": "^22.7.5",
"@types/w3c-web-serial": "^1.0.7",
"@types/web-bluetooth": "^0.0.20",
"tsup": "^8.3.0",
"typedoc": "^0.26.8",
"typescript": "^5.6.2"
}
}