-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 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
62
{
"name": "tanko",
"version": "1.0.16-0",
"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@10.31.0",
"devDependencies": {
"@types/node": "^25.2.0",
"@types/pdfkit": "^0.17.5"
},
"dependencies": {
"@alex_521/prompts": "^0.1.1",
"ansi-escapes": "^7.2.0",
"axios": "^1.13.5",
"boxen": "8.0.1",
"chalk": "^5.6.2",
"cheerio": "1.2.0",
"gradient-string": "^3.0.0",
"ora": "9.3.0",
"pdfkit": "0.17.2",
"playwright": "^1.58.2",
"sanitize-filename": "1.6.3",
"sharp": "0.34.5",
"terminal-image": "4.2.0",
"zod": "^4.3.6"
}
}