forked from meshtastic/js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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/meshtasticjs",
"version": "2.1.6-0",
"description": "Browser library for interfacing with meshtastic devices",
"license": "GPL-3.0-only",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"generate:docs": "typedoc src/index.ts"
},
"keywords": [
"meshtastic bluetooth serial webserial webbluetooth ble http library meshtasticjs"
],
"sideEffects": false,
"type": "module",
"module": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./types/index.d.ts"
}
},
"files": [
"dist",
".npmrc"
],
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/meshtastic/meshtastic.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/meshtastic/meshtastic.js.git"
},
"dependencies": {
"@buf/meshtastic_protobufs.bufbuild_es": "1.2.0-20230328173351-271d1533a896.1",
"@bufbuild/protobuf": "^1.2.0",
"crc": "^4.3.2",
"sub-events": "^1.9.0",
"tslib": "^2.5.0",
"tslog": "^4.8.2"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/w3c-web-serial": "^1.0.3",
"@types/web-bluetooth": "^0.0.16",
"rome": "^12.0.0",
"typedoc": "^0.23.28",
"typescript": "^5.0.2"
}
}