bandcamp-fetch
Version:
Scrape Bandcamp content
73 lines (72 loc) • 1.95 kB
JSON
{
"name": "bandcamp-fetch",
"version": "3.1.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",
"lint:fix": "npx eslint ./src --fix",
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx}\"",
"format:check": "prettier --check \"src/**/*.{js,ts,jsx,tsx}\"",
"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": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.19.39",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.2.0",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.8.1",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^4.11.0",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
},
"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"
]
}