A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
99
fork

Configure Feed

Select the types of activity you want to include in your feed.

Import version directly from package.json

+2 -2
+2 -2
apps/cli/src/index.ts
··· 13 13 import { tracks } from "cmd/tracks"; 14 14 import { whoami } from "cmd/whoami"; 15 15 import { Command } from "commander"; 16 - import version from "../package.json" assert { type: "json" }; 16 + import { version } from "../package.json" assert { type: "json" }; 17 17 import { login } from "./cmd/login"; 18 18 import { sync } from "cmd/sync"; 19 19 ··· 26 26 "https://rocksky.app", 27 27 )}) – scrobble tracks, view stats, and manage your listening history.`, 28 28 ) 29 - .version(version.version); 29 + .version(version); 30 30 31 31 program.configureHelp({ 32 32 styleTitle: (str) => chalk.bold.cyan(str),