poixpixel-discord-bot/package.json
Ahmad 7fea10ffd5
Some checks failed
Commitlint / Run commitlint scanning (push) Has been cancelled
chore: merge branch 'main' of https://github.com/ahmadk953/poixpixel-discord-bot into fun-features
2025-03-27 20:54:13 -04:00

49 lines
1.5 KiB
JSON

{
"name": "poixpixel-discord-bot",
"version": "1.0.0",
"main": "./src/discord-bot.ts",
"author": "Poixpixel",
"license": "Apache-2.0",
"type": "module",
"private": true,
"scripts": {
"compile": "npx tsc",
"target": "node ./target/discord-bot.js",
"start:dev": "yarn run compile && yarn run target",
"start:prod": "yarn compile && pm2 start ./target/discord-bot.js --name poixpixel-discord-bot",
"restart": "pm2 restart poixpixel-discord-bot",
"lint": "npx eslint ./src && npx tsc --noEmit",
"format": "prettier --check --ignore-path .prettierignore .",
"format:fix": "prettier --write --ignore-path .prettierignore .",
"prepare": "husky"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.68",
"discord.js": "^14.18.0",
"drizzle-orm": "^0.41.0",
"ioredis": "^5.6.0",
"pg": "^8.14.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/node": "^22.13.14",
"@types/pg": "^8.11.11",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"drizzle-kit": "^0.30.6",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "3.5.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"packageManager": "yarn@4.7.0"
}