Add initial project files including package.json, tsconfig.json, and index.ts for uptime monitoring
This commit is contained in:
19
package.json
Normal file
19
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user