-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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 <[email protected]> (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"
]
}