fp/packages/bot/package.json

29 lines
769 B
JSON
Raw Normal View History

{
2024-07-10 02:34:23 +00:00
"name": "bot",
"type": "module",
"version": "1.0.0",
"description": "",
2024-07-10 02:34:23 +00:00
"main": "index.js",
"scripts": {
2024-07-14 16:22:30 +00:00
"test": "echo \"Warn: no test specified\" && exit 0",
"start": "node ./dist/index.js",
"dev": "nodemon --ext js,ts,json,yaml --exec \"node --loader ts-node/esm --disable-warning=ExperimentalWarning ./src/index.ts\"",
2024-07-16 10:46:44 +00:00
"build": "tsc --build",
"clean": "rm -rf dist",
"superclean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist"
},
"packageManager": "pnpm@9.5.0",
"keywords": [],
"author": "",
2024-07-10 02:34:23 +00:00
"license": "Unlicense",
"dependencies": {
2024-07-10 02:34:23 +00:00
"discord.js": "^14.15.3",
"dotenv": "^16.4.5"
},
"devDependencies": {
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}