-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "mangakakalot-scrapper",
"description": "MangaKakalot scrapper",
"version": "0.0.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"keywords": [
"manga",
"manga-reader",
"mangakakalot",
"manga-downloader",
"manga-scraper",
"manga-pdf"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/LuckyYam/MangaKakalotScrapper.git"
},
"bugs": {
"url": "https://github.com/LuckyYam/MangaKakalotScrapper/issues"
},
"homepage": "https://github.com/LuckyYam/MangaKakalotScrapper#readme",
"author": {
"name": "Lucky Yambem",
"url": "https://github.com/LuckyYam"
},
"scripts": {
"build": "yarn rimraf dist && yarn tsc && yarn typedoc",
"lint": "yarn eslint .",
"format": "yarn prettier --write --config .prettierrc.json \"src/**/*.ts\"",
"lint:fix": "yarn eslint --fix .",
"prepack": "yarn tsc"
},
"dependencies": {
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"path": "^0.12.7",
"pdfkit": "^0.13.0"
},
"devDependencies": {
"@types/node": "^18.0.4",
"@types/pdfkit": "^0.12.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
}
}