This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
{
"name": "@derkraken/cr-dl",
"version": "4.0.1",
"description": "A tool to quickly download anime from Crunchyroll",
"main": "lib/api/CrDl.js",
"types": "lib/api/CrDl.d.ts",
"keywords": [
"crunchyroll",
"anime",
"anime-downloader",
"crunchyroll-downloader",
"weeb",
"download",
"downloader"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/DasKraken/CR-dl.git"
},
"scripts": {
"build": "tsc --declaration",
"watch": "tsc --declaration --watch",
"test": "jest",
"eslint": "eslint \"src/**/*.ts\""
},
"author": "DasKraken",
"license": "Unlicense",
"bin": {
"cr-dl": "./lib/commands/cr-dl.js"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@types/diacritics": "^1.3.1",
"async": "^3.2.0",
"cli-progress": "^3.8.1",
"cloudscraper": "^4.6.0",
"commander": "^5.0.0",
"diacritics": "^1.3.0",
"got": "^10.7.0",
"html-entities": "^1.3.1",
"langs": "^2.0.0",
"m3u8": "git+https://git@github.com/tedconf/node-m3u8.git",
"pretty-bytes": "^5.1.0",
"read": "^1.0.7",
"request": "^2.88.2",
"string-format": "^2.0.0",
"tunnel": "0.0.6"
},
"devDependencies": {
"@types/async": "^3.2.1",
"@types/cli-progress": "^3.4.2",
"@types/jest": "^25.2.1",
"@types/node": "^14.0.11",
"@types/read": "0.0.28",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.46",
"@types/string-format": "^2.0.0",
"@types/tunnel": "0.0.1",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.8.3"
}
}