bandcamp-fetch/package.json

75 lines
2.0 KiB
JSON
Raw Normal View History

2021-01-19 21:37:31 +01:00
{
"name": "bandcamp-fetch",
2023-10-29 19:10:14 +01:00
"version": "1.2.0",
2023-06-10 16:52:27 +02:00
"description": "Scrape Bandcamp content",
2021-01-19 21:37:31 +01:00
"scripts": {
2023-06-10 16:52:27 +02:00
"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",
2023-06-13 22:09:34 +02:00
"lint": "npx eslint ./src && npx eslint ./examples",
2023-06-10 16:52:27 +02:00
"lint:fix": "npx eslint ./src --fix && npx eslint ./examples --fix",
2023-10-28 14:59:43 +02:00
"doc": "npx typedoc",
"example": "func() { npx ts-node ./examples/${1}.ts; }; func"
2021-01-19 21:37:31 +01:00
},
2023-06-10 16:52:27 +02:00
"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)",
2021-01-19 21:37:31 +01:00
"repository": {
"type": "git",
"url": "https://github.com/patrickkfkan/bandcamp-fetch.git"
},
2023-06-10 16:52:27 +02:00
"license": "MIT",
"directories": {
"dist": "./dist"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/cookie": "^0.5.3",
2023-06-10 16:52:27 +02:00
"@types/node": "^14.18.38",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-plugin-tsdoc": "^0.2.17",
"ts-node": "^10.9.1",
"typedoc": "^0.24.0",
"typedoc-plugin-markdown": "^3.14.0",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.9.5"
},
"dependencies": {
"bottleneck": "^2.19.5",
"cheerio": "^1.0.0-rc.5",
"cookie": "^0.5.0",
2023-06-10 16:52:27 +02:00
"eval5": "^1.4.7",
2023-10-29 10:02:57 +01:00
"html-entities": "^2.4.0",
2023-06-10 16:52:27 +02:00
"node-cache": "^5.1.2",
"node-fetch": "^2.6.9"
},
2021-01-19 21:37:31 +01:00
"keywords": [
"bandcamp",
"scrape",
"scraper",
"discover",
"album",
"track",
"artist"
2023-06-10 16:52:27 +02:00
]
2021-01-19 21:37:31 +01:00
}