83 lines
2.8 KiB
JSON
83 lines
2.8 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",
|
|
"lint": "eslint",
|
|
"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",
|
|
"bot:update": "tsx scripts/update-bot.ts",
|
|
"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": "^7.1.0",
|
|
"@swc/cli": "^0.6.0",
|
|
"@swc/core": "^1.11.5",
|
|
"anilist": "^0.12.4",
|
|
"axios": "^1.8.1",
|
|
"chalk": "^5.4.1",
|
|
"cron": "^4.1.0",
|
|
"discord-player": "^7.1.0",
|
|
"discord-player-youtubei": "^1.4.2",
|
|
"discord.js": "^14.18.0",
|
|
"drizzle-orm": "^0.40.0",
|
|
"ioredis": "^5.5.0",
|
|
"ms": "^2.1.3",
|
|
"postgres": "^3.4.5",
|
|
"pretty-ms": "^9.2.0",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.3.0",
|
|
"@eslint/js": "^9.21.0",
|
|
"@types/ms": "^2.1.0",
|
|
"@types/node": "^22.13.8",
|
|
"@typescript-eslint/eslint-plugin": "^8.25.0",
|
|
"@typescript-eslint/parser": "^8.25.0",
|
|
"chokidar": "^4.0.3",
|
|
"dotenv": "^16.4.7",
|
|
"dprint": "^0.49.0",
|
|
"drizzle-kit": "^0.30.5",
|
|
"eslint": "^9.21.0",
|
|
"eslint-plugin-drizzle": "^0.2.3",
|
|
"globals": "^16.0.0",
|
|
"nodemon": "^3.1.9",
|
|
"tsx": "^4.19.3",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"packageManager": "pnpm@9.15.6",
|
|
"pnpm": {
|
|
"patchedDependencies": {
|
|
"whatwg-url@5.0.0": "patches/whatwg-url@5.0.0.patch",
|
|
"tr46@0.0.3": "patches/tr46@0.0.3.patch"
|
|
}
|
|
}
|
|
}
|