/ package.json
package.json
1 { 2 "name": "lofi-girl", 3 "version": "2.0.0", 4 "description": "", 5 "main": "index.js", 6 "scripts": { 7 "test": "echo \"Error: no test specified\" && exit 1", 8 "prettier": "prettier -w src", 9 "build": "yarn tsc -b", 10 "start": "node dist/index.js", 11 "full": "rmdir /s /q dist && yarn launch", 12 "launch": "yarn install && yarn build && yarn start", 13 "gitlint": "yarn prettier && git add . && git commit -m \"refactor: ♻️ Run prettier\" && git push", 14 "update": "git fetch && git pull && yarn build", 15 "synced": "git add src/utils/configs.json && git commit -m \"chore(stations): Sync config file\"" 16 }, 17 "keywords": [], 18 "author": "", 19 "license": "ISC", 20 "devDependencies": { 21 "eslint": "^9.0.0", 22 "prettier": "^3.0.0" 23 }, 24 "dependencies": { 25 "@discord-player/extractor": "^7.0.0", 26 "@discordjs/opus": "^0.10.0", 27 "@discordjs/voice": "^0.18.0", 28 "amethystjs": "^1.8.21", 29 "discord.js": "^14.21.0", 30 "dotenv": "^16.0.3", 31 "ffmpeg": "^0.0.4", 32 "ffmpeg-static": "^5.2.0", 33 "firebase": "^11.9.1", 34 "play-dl": "^1.9.7", 35 "tsc": "^2.0.4", 36 "typescript": "^5.3.2" 37 } 38 }