🎧 The official command-line interface for Rocksky — a modern, decentralized music tracking and discovery platform built on the AT Protocol.
at ce367a14be9f58005ae75322b09b789b59548243 47 lines 1.1 kB view raw
1{ 2 "name": "@rocksky/cli", 3 "version": "0.1.0", 4 "description": "Command-line interface for Rocksky – scrobble tracks, view stats, and manage your listening history", 5 "main": "dist/index.js", 6 "type": "module", 7 "bin": { 8 "rocksky": "./dist/index.js" 9 }, 10 "scripts": { 11 "test": "echo \"Error: no test specified\" && exit 1", 12 "dev": "tsx ./src/index.ts", 13 "build": "pkgroll && chmod +x ./dist/index.js" 14 }, 15 "keywords": [ 16 "audioscrobbler", 17 "last.fm", 18 "atproto", 19 "bluesky", 20 "cli" 21 ], 22 "author": "Tsiry Sandratraina <tsiry.sndr@rocksky.app>", 23 "license": "Apache-2.0", 24 "dependencies": { 25 "axios": "^1.8.4", 26 "chalk": "^5.4.1", 27 "commander": "^13.1.0", 28 "cors": "^2.8.5", 29 "dayjs": "^1.11.13", 30 "express": "^5.1.0", 31 "md5": "^2.3.0", 32 "open": "^10.1.0", 33 "table": "^6.9.0" 34 }, 35 "devDependencies": { 36 "@types/express": "^5.0.1", 37 "@types/node": "^22.14.1", 38 "pkgroll": "^2.12.1", 39 "tsx": "^4.19.3", 40 "typescript": "^5.8.3" 41 }, 42 "exports": { 43 ".": { 44 "import": "./dist/index.js" 45 } 46 } 47}