feat: add MAC based POST and GET endpoints

This commit is contained in:
2026-01-27 19:59:28 +01:00
parent dca830b21d
commit eecfbb015d
5 changed files with 1104 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "wol-api",
"version": "1.0.0",
"description": "Wake-on-LAN API in Node.js",
"keywords": [
"node",
"wol",
"javascript"
],
"repository": {
"type": "git",
"url": "git@git.luma.wtf:rosa/wol-api.git"
},
"license": "MIT",
"author": "Rosalina",
"type": "module",
"main": "api.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node api.js"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1"
}
}