forked from meshtastic/js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
59
60
61
{
"name": "@meshtastic/meshtasticjs",
"version": "0.6.56",
"description": "Browser library for interfacing with meshtastic devices",
"license": "GPL-3.0-only",
"sideEffects": false,
"type": "module",
"module": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./types/index.d.ts"
}
},
"files": [
"dist"
],
"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": {
"@meshtastic/eslint-config": "^1.0.8",
"@protobuf-ts/runtime": "^2.4.0",
"prettier": "^2.6.2",
"sub-events": "^1.8.9"
},
"devDependencies": {
"@protobuf-ts/plugin": "2.4.0",
"@types/w3c-web-serial": "^1.0.2",
"@types/web-bluetooth": "^0.0.14",
"node-protoc": "^1.0.3",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"scripts": {
"build": "tsc",
"generate:protobufs": "protoc --ts_out src/generated/ --ts_opt long_type_string --proto_path protobufs protobufs/*.proto",
"generate:docs": "typedoc src/index.ts",
"update:protobufs": "cd protobufs && git pull origin master",
"format": "prettier --check . && eslint src/*.ts"
},
"keywords": [
"meshtastic bluetooth serial webserial webbluetooth ble http library meshtasticjs"
],
"contributors": [
{
"name": "Tobias Huttinger",
"url": "https://github.com/thepoweroftwo"
},
{
"name": "Sacha Weatherstone",
"email": "[email protected]",
"url": "https://github.com/sachaw"
}
]
}