{
  "name": "musicfetch",
  "version": "1.2.0",
  "description": "Type-safe JavaScript and TypeScript client for the Musicfetch API",
  "license": "MIT",
  "homepage": "https://musicfetch.io/docs/sdk",
  "repository": {
    "type": "git",
    "url": "https://github.com/musicfetch/musicfetch.git",
    "directory": "packages/musicfetch"
  },
  "type": "module",
  "types": "./dist/types/index.d.ts",
  "scripts": {
    "dev": "tsc --watch",
    "build": "scripts/build",
    "link-package": "scripts/link",
    "rollup": "rollup --config rollup.config.mjs",
    "prepack": "npm run build",
    "test:types": "yarn build && yarn test:types:tsd",
    "test:types:tsd": "tsd --files test/types/index.test-d.ts",
    "test": "yarn test:types"
  },
  "devDependencies": {
    "@rollup/plugin-alias": "^5.1.1",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "glob": "^13.0.0",
    "rollup": "^4.0.0",
    "rollup-plugin-copy": "^3.5.0",
    "rollup-plugin-dts": "^6.1.0",
    "tsd": "^0.31.0",
    "tsup": "^8.0.0",
    "typescript": "^5.9.2"
  },
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "default": "./dist/cjs/index.js"
    },
    "./react": {
      "types": "./dist/types/react/index.d.ts",
      "import": "./dist/esm/react/index.js",
      "default": "./dist/cjs/react/index.js"
    },
    "./brands": {
      "types": "./dist/types/brands/index.d.ts",
      "import": "./dist/esm/brands/index.js",
      "default": "./dist/cjs/brands/index.js"
    },
    "./brands/*": {
      "types": "./dist/types/brands/*/index.d.ts",
      "import": "./dist/esm/brands/*/index.js",
      "default": "./dist/cjs/brands/*/index.js"
    },
    "./brands/*/icon.svg": {
      "default": "./dist/types/brands/*/icon.svg"
    }
  }
}
