poixpixel-discord-bot/package.json
2024-03-03 17:31:42 -05:00

24 lines
540 B
JSON

{
"name": "poixpixel-discord-bot",
"version": "1.0.0",
"main": "./source/discord-bot.ts",
"author": "Poixpixel",
"license": "ISC",
"type": "module",
"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.14.1",
"mongoose": "^8.2.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"eslint": "^8.56.0"
}
}