-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 894 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 894 Bytes
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
{
"name": "@liamcottle/meshcore.js",
"version": "1.15.0",
"description": "A JavaScript library for interacting with a MeshCore device running the Companion Radio Firmware.",
"keywords": [
"meshcore"
],
"homepage": "https://github.com/meshcore-dev/meshcore.js#readme",
"bugs": {
"url": "https://github.com/meshcore-dev/meshcore.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meshcore-dev/meshcore.js.git"
},
"license": "MIT",
"author": "Liam Cottle <liam@liamcottle.com>",
"type": "module",
"main": "src/index.js",
"directories": {
"example": "examples"
},
"files": [
"examples",
"src",
"index.html",
"LICENSE",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@noble/curves": "^1.9.7",
"serialport": "^13.0.0"
}
}