-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.26 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
69
70
71
72
73
74
75
76
77
78
{
"name": "cli-node-scraper-anidb",
"version": "1.0.1",
"description": "A CLI scraper for AniDB to extract anime references, details, and assets using Node.js and TypeScript.",
"license": "MIT",
"keywords": [
"scraper",
"anime",
"anidb",
"nodejs",
"typescript",
"cli",
"sqlite"
],
"repository": {
"type": "git",
"url": "https://github.com/5h1ngy/cli-node-scraper-anidb.git"
},
"author": "5h1ngy",
"engines": {
"node": ">=20.18.0",
"yarn": ">=4.5.1"
},
"packageManager": "yarn@4.5.1",
"type": "commonjs",
"bin": {
"anime-scraper": "./dist/index.js"
},
"main": "dist/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --respawn --transpile-only --notify false -r tsconfig-paths/register src/index.ts",
"build": "cross-env NODE_ENV=production tsc && tsc-alias",
"start": "cross-env NODE_ENV=production node dist/index.js",
"docs": "typedoc",
"clean": "rm -rfdv node_modules dist docs data logs",
"update": "yarn up '*@latest'"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"header-generator": "^2.1.55",
"html-to-text": "^9.0.5",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"object-sizeof": "^2.6.5",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"user-agents": "^1.1.325",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/html-to-text": "^9.0.4",
"@types/lodash": "^4.17.13",
"@types/morgan": "^1.9.9",
"@types/node": "^22.9.0",
"@types/user-agents": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-import-resolver-alias": "^1.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"zlib": "^1.0.5"
}
}