-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "anidb-nfo-exporter",
"version": "1.0.0",
"main": "dist/cli.js",
"scripts": {
"start": "npx tsc && node dist/cli.js",
"build": "npx tsc",
"rebuild": "npx tsc --build --clean",
"lint": "npx eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"anidbne": "dist/cli.js"
},
"keywords": [],
"author": "sjorge",
"license": "MIT",
"description": "NFO exporter for anidb",
"devDependencies": {
"@commander-js/extra-typings": "^11.1.0",
"@types/braces": ">=3.0.4",
"@types/fast-levenshtein": "^0.0.4",
"@types/node": "^20.10.5",
"@types/xml2js": ">=0.4.14",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"anidbjs": "^2.4.4",
"anilist-node": "^1.14.0",
"axios": ">=1.7.3",
"braces": ">=3.0.3",
"commander": "^11.1.0",
"deepmerge-ts": "^5.1.0",
"fast-levenshtein": "^3.0.0",
"moviedb-promise": "^4.0.3",
"xml2js": ">=0.5.0",
"xmlbuilder2": "^3.1.1"
},
"overrides": {
"whatwg-url": "13.0.0",
"follow-redirects": ">=1.15.6",
"xml2js": ">=0.5.0"
}
}