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

62 lines
1.5 KiB
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.",
2023-04-14 06:47:58 -04:00
"main": "dist/index.js",
"type": "module",
2022-11-11 16:33:37 -05:00
"repository": {
"type": "git",
2023-12-24 10:21:40 -05:00
"url": "git+https://github.com/AnxietyisReal/Daggerbot-TS.git"
},
"scripts": {
2023-12-28 08:28:44 -05:00
"dev": "yarn tsc && yarn node . src/DB-Beta.config.json daggerbotbeta",
2023-12-24 10:21:40 -05:00
"sdk": "yarn dlx @yarnpkg/sdks vscode"
2022-11-11 16:33:37 -05:00
},
"author": "Toast",
"license": "ISC",
"os": [
"win32",
2023-08-06 03:52:45 -04:00
"linux",
"!darwin"
2022-11-11 16:33:37 -05:00
],
"cpu": [
"x64",
"!arm64",
2022-11-11 16:33:37 -05:00
"!mips",
"!ia32"
],
"engines": {
2023-12-24 10:21:40 -05:00
"node": ">=18.18.0, <19 || >=20",
"yarn": ">=4.0.0",
"npm": "yarn is required, dont use npm"
2022-11-11 19:58:11 -05:00
},
2023-09-01 00:32:11 -04:00
"engineStrict": true,
2023-12-24 10:21:40 -05:00
"packageManager": "yarn@4.0.2+sha256.825003a0f561ad09a3b1ac4a3b3ea6207af2796d54f62a9420520915721f5186",
2022-11-11 19:58:11 -05:00
"dependencies": {
2023-08-06 03:52:45 -04:00
"@octokit/auth-token": "4.0.0",
2023-10-01 11:44:26 -04:00
"@octokit/rest": "20.0.2",
"@toast/tokenservice-client": "1.0.6",
2023-10-06 02:11:23 -04:00
"ansi-colors": "4.1.3",
2023-08-06 03:52:45 -04:00
"canvas": "2.11.2",
2023-10-07 17:01:16 -04:00
"dayjs": "1.11.10",
2023-12-24 10:21:40 -05:00
"discord.js": "14.14.1",
2024-01-13 23:23:13 -05:00
"fast-xml-parser": "4.3.3",
2022-11-11 19:58:11 -05:00
"ms": "2.1.3",
2023-12-24 10:21:40 -05:00
"node-cron": "3.0.3",
"pg": "8.11.3",
"pg-hstore": "2.3.4",
"redis": "4.6.12",
"sequelize": "6.35.2",
"simple-git": "3.22.0",
2023-12-24 10:21:40 -05:00
"systeminformation": "5.21.22",
2024-01-13 23:23:13 -05:00
"undici": "6.3.0"
2022-11-11 19:58:11 -05:00
},
"devDependencies": {
2023-12-24 10:21:40 -05:00
"@types/ms": "0.7.34",
"@types/node": "20.11.3",
2023-12-24 10:21:40 -05:00
"@types/node-cron": "3.0.11",
"@types/pg": "8.10.9",
2024-01-13 23:23:13 -05:00
"@types/sequelize": "4.28.20",
2023-12-24 10:21:40 -05:00
"typescript": "5.3.3"
2022-11-11 16:33:37 -05:00
}
}