A discord bot for teal.fm
discord tealfm music
1{ 2 "name": "tealfmbot", 3 "version": "0.0.1", 4 "type": "module", 5 "description": "A discord bot for teal.fm", 6 "main": "main.ts", 7 "scripts": { 8 "dev": "tsx main.ts", 9 "deploy-commands": "tsx deploy-commands.ts", 10 "tapper:dev": "NODE_ENV=development tsx tapper.ts", 11 "tapper:prod": "NODE_ENV=production tsx tapper.ts", 12 "migrate": "tsx kysely/migrator.ts", 13 "codegen": "kysely-codegen --dialect postgres", 14 "seed": "tsx kysely/seed.ts", 15 "typecheck": "tsc --noEmit" 16 }, 17 "keywords": [ 18 "teal.fm", 19 "atprotocol", 20 "music" 21 ], 22 "author": "Dane Miller <me@dane.computer>", 23 "license": "MIT", 24 "packageManager": "pnpm@10.15.0", 25 "dependencies": { 26 "@atproto/tap": "^0.0.2", 27 "discord.js": "^14.25.1", 28 "kysely": "^0.28.9", 29 "pg": "^8.16.3", 30 "pino": "^10.1.0" 31 }, 32 "devDependencies": { 33 "@types/node": "^25.0.3", 34 "@types/pg": "^8.16.0", 35 "kysely-codegen": "^0.19.0", 36 "pino-pretty": "^13.1.3", 37 "tsx": "^4.21.0", 38 "typescript": "^5.9.3" 39 } 40}