Files
rondelle/package.json
hikari 7997c9f59d
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 48s
feat: set up Discord bot scaffolding
- Add Rondelle interface with discord client and database
- Add logger utility using @nhcarrigan/logger
- Add database utility for Prisma client instantiation
- Update index.ts with bot startup logic
- Update .gitignore to exclude prod/ build output
2026-01-21 20:23:32 -08:00

36 lines
840 B
JSON

{
"name": "rondelle",
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/engines",
"esbuild",
"prisma"
]
},
"version": "0.0.0",
"description": "",
"main": "./prod/index.js",
"scripts": {
"build": "tsc",
"start": "op run --env-file=prod.env -- node prod/index.js",
"lint": "eslint src --max-warnings 0",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [],
"author": "Naomi Carrigan <contact@nhcarrigan.com>",
"license": "See LICENSE.md",
"type": "module",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "22.10.6",
"prisma": "6.8.2",
"typescript": "5.7.3"
},
"dependencies": {
"@nhcarrigan/logger": "1.1.1",
"@prisma/client": "6.8.2",
"discord.js": "14.25.1"
}
}