forked from meshtastic/js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
55
56
57
{
"name": "@smartrocksproject/meshtasticjs",
"version": "2.0.20-6",
"description": "Browser library for interfacing with meshtastic devices",
"license": "GPL-3.0-only",
"scripts": {
"prepare": "npm run build",
"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.0.0-20230217124815-d362b2e8810a.1",
"@bufbuild/protobuf": "^1.0.0",
"crc": "^4.3.2",
"sub-events": "^1.9.0",
"tslog": "^4.7.4"
},
"devDependencies": {
"@types/node": "^18.14.0",
"@types/w3c-web-serial": "^1.0.3",
"@types/web-bluetooth": "^0.0.16",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.4",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
}
}