UNPKG

bandcamp-fetch

Version:
69 lines (68 loc) 1.78 kB
{ "name": "bandcamp-fetch", "version": "2.0.0", "description": "Scrape Bandcamp content", "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 && npx eslint ./examples", "lint:fix": "npx eslint ./src --fix", "doc": "npx typedoc" }, "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/bandcamp-fetch.git" }, "license": "MIT", "directories": { "dist": "./dist" }, "engines": { "node": ">=18" }, "devDependencies": { "@types/node": "^18.19.50", "@typescript-eslint/eslint-plugin": "^8.15.0", "@typescript-eslint/parser": "^8.15.0", "typescript-eslint": "^8.15.0", "eslint": "^9.15.0", "eslint-plugin-tsdoc": "^0.3.0", "typedoc": "^0.26.11", "typedoc-plugin-markdown": "^4.2.10", "typedoc-plugin-rename-defaults": "^0.7.1", "typescript": "^5.6.3" }, "dependencies": { "bottleneck": "^2.19.5", "cheerio": "^1.0.0", "html-entities": "^2.5.2", "node-cache": "^5.1.2" }, "keywords": [ "bandcamp", "scrape", "scraper", "discover", "album", "track", "artist" ] }