initial commit

This commit is contained in:
Ryan Cao 2022-05-20 19:35:25 +08:00
commit f26e14119c
No known key found for this signature in database
GPG key ID: 528A2C1B6656B97F
8 changed files with 2367 additions and 0 deletions

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "potat-bot",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch index.ts --exec esno index.ts",
"build": "esbuild index.ts --format=cjs --platform=node --bundle --minify --outfile=index.js"
},
"dependencies": {
"discord.js": "^13.7.0",
"koa": "^2.13.4"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"esbuild": "^0.14.39",
"esno": "^0.16.3",
"nodemon": "^2.0.16"
}
}