forked from meshtastic/js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "@meshtastic/js",
"version": "2.3.7-1",
"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.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"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": {
"crc": "^4.3.2",
"ste-simple-events": "^3.0.11",
"tslog": "^4.9.3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@buf/meshtastic_protobufs.bufbuild_es": "^1.10.0-20240817124710-a1b6e1d8e51a.1",
"@types/node": "^22.4.1",
"@types/w3c-web-serial": "^1.0.6",
"@types/web-bluetooth": "^0.0.20",
"tsup": "^8.2.4",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
}
}