diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c7fb7a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/node_modules +/dist +.env \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..2d08d9a --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Witch It Stats +Generates stats of the official game servers of Witch It. \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..d193e40 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name": "witchitstats", + "version": "1.0.0", + "description": "Tracks witch it game servers and generates stats", + "main": "app.js", + "scripts": { + "dev": "cd ./src && nodemon ./app.ts", + "build": "tsc -p .", + "start": "cd ./dist && node ./app.js", + "bs": "tsc -p . && cd ./dist && node ./app.js" + }, + "author": "GiyoMoon", + "license": "GPLv3" +} \ No newline at end of file