poixpixel-discord-bot/package.json
2024-08-17 01:31:07 -04:00

26 lines
625 B
JSON

{
"name": "poixpixel-discord-bot",
"version": "1.0.0",
"main": "./source/discord-bot.ts",
"author": "Poixpixel",
"license": "Apache-2.0",
"type": "module",
"private": true,
"scripts": {
"compile": "npx tsc",
"target": "node ./target/discord-bot.js",
"start": "yarn run compile && yarn run target",
"lint": "npx eslint ./source --ext .ts"
},
"dependencies": {
"discord.js": "^14.15.3",
"mongoose": "^8.5.3"
},
"devDependencies": {
"@types/node": "^22.4.0",
"eslint": "^9.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"packageManager": "yarn@4.4.0"
}