Files
illegitimate-bot/package.json

81 lines
3.0 KiB
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "illegitimate-bot",
"displayName": "Illegitimate Bot",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://gitlab.com/illegitimate/illegitimate-bot"
},
"homepage": "https://gitlab.com/illegitimate/illegitimate-bot",
"scripts": {
"start": "node dist/index.js",
"build": "swc src -d dist --strip-leading-paths",
"watch": "swc src -d dist --strip-leading-paths --watch",
"dev": "nodemon --config .nodemon/swc.json",
"dev:ts": "nodemon --config .nodemon/ts.json src/index.ts",
"dev:ts:inspect": "nodemon --config .nodemon/debug.json src/index.ts",
"dev:js": "nodemon --config .nodemon/js.json dist/index.js",
"fmt": "dprint fmt \"**/*.ts\"",
"check": "pnpm tscheck && pnpm lint",
"tscheck": "tsc && echo \"TypeScript check passed!\"",
"lint": "eslint && echo \"Linting passed!\"",
"lint:fix": "eslint --fix",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:start": "docker compose -f dev-db.yml up -d",
"db:stop": "docker compose -f dev-db.yml down",
"push:prod": "tsx scripts/deploy-commands.ts",
"push:dev": "tsx scripts/dev-deploy.ts",
"delete:dev": "tsx scripts/delete-commands.ts"
},
"author": "Taken",
"license": "GPL-3.0-only",
"dependencies": {
"@discord-player/extractor": "^4.5.1",
"@evan/opus": "^1.0.3",
"anilist": "^0.12.4",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"cron": "^3.1.7",
"discord-player": "^6.7.1",
"discord-player-youtubei": "^1.3.2",
"discord.js": "^14.16.2",
"drizzle-orm": "^0.33.0",
"ioredis": "^5.4.1",
"ms": "^2.1.3",
"postgres": "^3.4.4",
"pretty-ms": "^9.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.28",
"@types/ms": "^0.7.34",
"@types/node": "^22.7.2",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"chokidar": "^4.0.1",
"dotenv": "^16.4.5",
"dprint": "^0.47.2",
"drizzle-kit": "^0.24.2",
"eslint": "^9.11.1",
"eslint-plugin-drizzle": "^0.2.3",
"globals": "^15.9.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
"pnpm": {
"patchedDependencies": {
"whatwg-url@5.0.0": "patches/whatwg-url@5.0.0.patch",
"tr46@0.0.3": "patches/tr46@0.0.3.patch"
}
}
}