/ package.json
package.json
1 { 2 "name": "activity-roles", 3 "description": "A Discord bot that gives roles to users based on their Discord presence", 4 "version": "1.9.5", 5 "main": "src/index.ts", 6 "license": "AGPL-3.0", 7 "author": "tippfehlr", 8 "repository": { 9 "type": "git", 10 "url": "https://github.com/tippf3hlr/activity-roles.git" 11 }, 12 "dependencies": { 13 "@influxdata/influxdb-client": "^1.33.2", 14 "better-sqlite3": "^9.0.0", 15 "discord.js": "^14.13.0", 16 "i18n": "^0.15.1", 17 "pino": "^8.16.1", 18 "pino-pretty": "^10.2.3", 19 "table": "^6.8.1" 20 }, 21 "devDependencies": { 22 "@types/better-sqlite3": "^7.6.6", 23 "@types/i18n": "^0.13.8", 24 "@types/node": "^20.8.9", 25 "@typescript-eslint/eslint-plugin": "^6.9.1", 26 "@typescript-eslint/parser": "^6.9.1", 27 "eslint": "^8.52.0", 28 "eslint-config-prettier": "^9.0.0", 29 "prettier": "^3.0.3", 30 "typescript": "^5.2.2" 31 }, 32 "scripts": { 33 "start": "ts-node ./src/index.ts", 34 "sync": "ts-node ./syncCommands.ts", 35 "dev": "./node_modules/.bin/nodemon -i locales/", 36 "build": "rm -r out && ./node_modules/.bin/tsc --outDir out/ && cp -r locales out/locales" 37 }, 38 "packageManager": "yarn@3.6.0" 39 }