init repo

This commit is contained in:
2026-02-01 16:48:09 +07:00
commit e16a4b2ce1
5 changed files with 1618 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "whatsminer-api",
"version": "1.0.0",
"description": "REST API для мониторинга WhatsMiner",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"@thermocline-labs/whats-miner": "^1.0.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=14.0.0"
}
}