{
  "name": "soundcloud-fetch",
  "version": "1.2.0",
  "type": "module",
  "description": "Fetch SoundCloud resources through API v2",
  "scripts": {
    "build": "npm run prepare",
    "build:esm": "npx tsc -p tsconfig-esm.json",
    "build:cjs": "npx tsc -p tsconfig.json",
    "prepare": "rm -rf dist && npm run build:esm && npm run build:cjs && bash fixup.sh",
    "lint": "npx eslint ./src",
    "lint:fix": "npx eslint ./src --fix ",
    "doc": "npx typedoc",
    "example": "func() { node ./examples/${1}.mjs; }; func"
  },
  "main": "./dist/cjs/index-cjs.js",
  "module": "./dist/mjs/index.js",
  "types": "./dist/mjs/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/mjs/index.d.ts",
        "default": "./dist/mjs/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index-cjs.js"
      }
    }
  },
  "author": "Patrick Kan <patrickkfkan@gmail.com> (https://github.com/patrickkfkan)",
  "repository": {
    "type": "git",
    "url": "https://github.com/patrickkfkan/soundcloud-fetch.git"
  },
  "license": "MIT",
  "directories": {
    "dist": "./dist"
  },
  "engines": {
    "node": ">=20"
  },
  "devDependencies": {
    "@types/lodash": "^4.17.23",
    "@types/node": "^20.19.30",
    "@typescript-eslint/eslint-plugin": "^8.54.0",
    "@typescript-eslint/parser": "^8.54.0",
    "eslint": "^9.39.2",
    "eslint-plugin-tsdoc": "^0.2.17",
    "typedoc": "^0.28.16",
    "typedoc-plugin-markdown": "^4.9.0",
    "typedoc-plugin-rename-defaults": "^0.7.3",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.54.0"
  },
  "keywords": [
    "soundcloud",
    "scrape",
    "scraper",
    "api"
  ],
  "dependencies": {
    "cookie": "^1.1.1",
    "lodash": "^4.17.23",
    "undici": "^7.20.0"
  }
}
