-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
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
{
"name": "@castdrian/kdapi",
"version": "0.6.6",
"type": "module",
"description": "kpop idol and group profiles dataset generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/castdrian/kdapi.git"
},
"files": [
"dist",
"data"
],
"scripts": {
"scrape:debug": "bun src/cli.ts scrape -d -s 200 --delay 2000 --cache",
"scrape:prod": "bun src/cli.ts scrape --delay 1000 --batch-size 10 --force",
"scrape:cache-only": "bun src/cli.ts scrape --cache-only --delay 0 --batch-size 50",
"build": "bun build ./src/index.ts --outdir ./dist --target node && tsc --project tsconfig.build.json",
"prepublishOnly": "bun run build",
"test": "bun test",
"test:watch": "bun test --watch"
},
"devDependencies": {
"@types/uuid": "^11.0.0",
"bun-types": "latest",
"typescript": "^5.0.0"
},
"dependencies": {
"@biomejs/biome": "^2.0.4",
"cheerio": "^1.0.0",
"commander": "^14.0.0",
"date-fns": "^4.1.0",
"fuse.js": "^7.1.0",
"https-proxy-agent": "^7.0.5",
"undici": "^7.8.0",
"uuid": "^13.0.0",
"zod": "^4.0.14"
}
}