mirror of
https://github.com/Cyclenerd/meshcore-bot.git
synced 2026-03-28 17:42:46 +01:00
more npm stuff
This commit is contained in:
5
.npmignore
Normal file
5
.npmignore
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
**
|
||||||
|
!LICENSE
|
||||||
|
!meshcore-bot.js
|
||||||
|
!package.json
|
||||||
|
!README.md
|
||||||
@@ -12,7 +12,7 @@ This bot is ideal for testing MeshCore setup with repeater and distance of commu
|
|||||||
|
|
||||||
| Client | Bot |
|
| Client | Bot |
|
||||||
|--------|-----|
|
|--------|-----|
|
||||||
|  |  |
|
|  |  |
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@@ -96,4 +96,4 @@ timestamp,lpp_volts,batt_milli_volts,curr_tx_queue_len,noise_floor,last_rssi,n_p
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
All files in this repository are under the [Apache License, Version 2.0](LICENSE) unless noted otherwise.
|
All files in this repository are under the [Apache License, Version 2.0](https://github.com/Cyclenerd/meshcore-bot/blob/master/LICENSE) unless noted otherwise.
|
||||||
|
|||||||
24
package.json
24
package.json
@@ -1,19 +1,31 @@
|
|||||||
{
|
{
|
||||||
"type": "module",
|
"author": "Nils K. <git@cyclenerd.de> (https://cyclenerd.de/)",
|
||||||
"version": "1.0.0",
|
|
||||||
"scripts": {
|
|
||||||
"start": "node meshcore-bot.js"
|
|
||||||
},
|
|
||||||
"bin": {
|
"bin": {
|
||||||
"meshcore-bot": "./meshcore-bot.js"
|
"meshcore-bot": "./meshcore-bot.js"
|
||||||
},
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/Cyclenerd/meshcore-bot/issues"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@liamcottle/meshcore.js": "^1.6.0",
|
"@liamcottle/meshcore.js": "^1.6.0",
|
||||||
"yargs": "^17.7.2"
|
"yargs": "^17.7.2"
|
||||||
},
|
},
|
||||||
|
"description": "Command bot that connects to a MeshCore companion radio device via USB serial",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.34.0",
|
"@eslint/js": "^9.34.0",
|
||||||
"eslint": "^9.35.0",
|
"eslint": "^9.35.0",
|
||||||
"globals": "^16.3.0"
|
"globals": "^16.3.0"
|
||||||
}
|
},
|
||||||
|
"homepage": "https://github.com/Cyclenerd/meshcore-bot",
|
||||||
|
"license": "Apache-2.0",
|
||||||
|
"name": "meshcore-bot",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/Cyclenerd/meshcore-bot.git"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"start": "node meshcore-bot.js"
|
||||||
|
},
|
||||||
|
"type": "module",
|
||||||
|
"version": "1.0.0"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user