-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tanko",
"version": "2.0.5",
"type": "module",
"description": "Una herramienta para leer y descargar mangas desde la terminal",
"main": "dist/index.js",
"keywords": [
"manga",
"cli",
"anime",
"terminal",
"reader",
"tools",
"scraper"
],
"author": {
"name": "Alexandro Mendez",
"email": "alexandro.marcelino321@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Alexandro521/Tanko.git"
},
"bugs": {
"url": "https://github.com/Alexandro521/Tanko/issues"
},
"homepage": "https://github.com/Alexandro521/Tanko#readme",
"bin": {
"tanko": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc && node ./dist/index.js",
"dev:bun": "bun run ./src/index.ts",
"start": "node ./dist/index.js"
},
"license": "ISC",
"packageManager": "pnpm@11.5.2",
"devDependencies": {
"@types/node": "^25.9.2",
"@types/pdfkit": "^0.17.5"
},
"dependencies": {
"@alex_521/prompts": "0.2.2",
"ansi-escapes": "7.3.0",
"axios": "1.17.0",
"boxen": "8.0.1",
"chalk": "5.6.2",
"cheerio": "1.2.0",
"gradient-string": "3.0.0",
"ora": "9.4.0",
"pdfkit": "0.19.1",
"playwright": "1.60.0",
"sanitize-filename": "1.6.4",
"sharp": "0.35.1",
"terminal-image": "4.3.0"
}
}