chore: simplify to plain JS worker.js and finalize install instructions

This commit is contained in:
AyrisAI
2026-05-14 19:16:08 +03:00
parent 06789a25af
commit 4a7b3bcc3a
9 changed files with 37 additions and 235 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "ayristech-worker",
"version": "1.0.0",
"description": "AyrisTech Mailcow Worker",
"main": "worker.js",
"scripts": {
"start": "node worker.js",
"dev": "node --watch worker.js"
},
"dependencies": {
"axios": "^1.16.1",
"chokidar": "^5.0.0",
"dotenv": "^17.4.2",
"ioredis": "^5.10.1"
}
}