1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00

init repo shiz

This commit is contained in:
AnxietyisReal 2022-11-12 08:33:37 +11:00
parent 6cac1390fe
commit 581176ba5e
2 changed files with 32 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
# NodeJS stuff
node_modules/
package-lock.json
.ncurc.json
# Bot stuff
database/

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "daggerbot-ts",
"version": "1.0.0",
"description": "TypeScript version of the original JavaScript-based bot for Official Daggerwin Discord.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AnxietyisReal/Daggerbot-TS.git"
},
"author": "Toast",
"license": "ISC",
"os": [
"!darwin",
"win32",
"linux"
],
"cpu": [
"x64",
"!arm",
"!mips",
"!ia32"
],
"engines": {
"node": ">=17.0.0"
}
}