1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 04:11:00 -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",
2024-01-22 00:35:47 -05:00
"url": "git+https://github.com/toast-ts/Daggerbot-TS.git"
2023-12-24 10:21:40 -05:00
},
"scripts": {
2024-02-25 04:01:04 -05:00
"dev": "yarn tsc && yarn node . src/DB-Beta.config.json daggerbotbeta true",
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,
2024-02-01 15:21:25 -05:00
"packageManager": "yarn@4.1.0+sha256.81a00df816059803e6b5148acf03ce313cad36b7f6e5af6efa040a15981a6ffb",
2022-11-11 19:58:11 -05:00
"dependencies": {
2024-02-28 02:18:28 -05:00
"@napi-rs/canvas": "0.1.50",
2023-10-01 11:44:26 -04:00
"@octokit/rest": "20.0.2",
2024-02-12 09:07:47 -05:00
"@toast/tokenservice-client": "1.0.12",
2023-10-06 02:11:23 -04:00
"ansi-colors": "4.1.3",
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-02-23 18:30:17 -05:00
"fast-xml-parser": "4.3.5",
2024-02-28 02:18:28 -05:00
"mathjs": "12.4.0",
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.13",
2024-02-19 15:55:28 -05:00
"sequelize": "6.37.1",
"simple-git": "3.22.0",
2024-02-19 15:55:28 -05:00
"systeminformation": "5.22.0",
Combined Dependabot PR (#88) * Bump @types/node from 20.11.16 to 20.11.17 Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.11.16 to 20.11.17. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump sequelize from 6.35.2 to 6.37.0 Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.35.2 to 6.37.0. - [Release notes](https://github.com/sequelize/sequelize/releases) - [Commits](https://github.com/sequelize/sequelize/compare/v6.35.2...v6.37.0) --- updated-dependencies: - dependency-name: sequelize dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump undici from 6.6.0 to 6.6.2 Bumps [undici](https://github.com/nodejs/undici) from 6.6.0 to 6.6.2. - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](https://github.com/nodejs/undici/compare/v6.6.0...v6.6.2) --- updated-dependencies: - dependency-name: undici dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: toast-ts <96593068+toast-ts@users.noreply.github.com>
2024-02-11 23:30:27 -05:00
"undici": "6.6.2"
2022-11-11 19:58:11 -05:00
},
"devDependencies": {
2023-12-24 10:21:40 -05:00
"@types/ms": "0.7.34",
2024-02-28 02:18:28 -05:00
"@types/node": "20.11.21",
2023-12-24 10:21:40 -05:00
"@types/node-cron": "3.0.11",
2024-02-28 02:18:28 -05:00
"@types/pg": "8.11.2",
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
}
}