All checks were successful
Auto Build and Push Docker Image / build (push) Successful in 12s
36 lines
868 B
JSON
36 lines
868 B
JSON
{
|
|
"name": "pixelpoebel",
|
|
"version": "1.0.0",
|
|
"description": "Moderner, erweiterbarer Discord Bot",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc -w",
|
|
"start": "node dist/index.js",
|
|
"dev": "nodemon --watch 'src/**/*.ts' --exec 'node --loader ts-node/esm' src/index.ts",
|
|
"deploy": "node --loader ts-node/esm src/deploy-commands.ts",
|
|
"deploy:dist": "node dist/deploy-commands.js"
|
|
},
|
|
"keywords": [
|
|
"discord",
|
|
"bot",
|
|
"typescript",
|
|
"modular"
|
|
],
|
|
"author": "sarah",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"better-sqlite3": "^12.8.0",
|
|
"discord.js": "^14.18.0",
|
|
"dotenv": "^16.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/node": "^22.13.9",
|
|
"nodemon": "^3.1.9",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|