Add initial project files including package.json, tsconfig.json, and index.ts for uptime monitoring

This commit is contained in:
2026-03-09 08:18:34 +01:00
parent a799e1996c
commit 1d81eb1e0b
4 changed files with 322 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "uptime",
"version": "1.0.0",
"description": "Simple nodejs console software for monitoring a server.",
"license": "MIT",
"author": "TheDreWen",
"type": "commonjs",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"ts-node": "^10.9.2"
},
"dependencies": {
"ping": "^1.0.0"
}
}