1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00
Daggerbot-TS/package.json

43 lines
835 B
JSON
Raw Normal View History

2022-11-11 16:33:37 -05:00
{
"name": "daggerbot-ts",
"description": "TypeScript version of the original JavaScript-based bot for Official Daggerwin Discord.",
2022-11-11 19:58:11 -05:00
"main": "./src/index.ts",
"scripts": {
"start": "ts-node src/Sharding.ts"
},
2022-11-11 16:33:37 -05:00
"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"
2022-11-11 19:58:11 -05:00
},
"dependencies": {
"axios": "1.1.3",
"canvas": "2.10.2",
"discord.js": "14.6.0",
"moment": "2.29.4",
"ms": "2.1.3",
"sequelize": "6.25.5",
"sqlite3": "5.1.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/node": "18.11.9",
"ts-node": "10.9.1"
2022-11-11 16:33:37 -05:00
}
}