-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "pdf-manhwa",
"version": "1.0.0",
"description": "Manhwa to PDF",
"main": "src/app.js",
"bin": "src/app.js",
"scripts": {
"start": "node src/app.js",
"all": "node src/app.js --all",
"lint": "eslint src/"
},
"pkg": {
"assets": [
"**/node_modules/linebreak/src/classes.trie",
"**/node_modules/pdfkit/js/data/Helvetica.afm"
],
"targets": [
"node12"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/StereoPT/pdf-manhwa.git"
},
"author": "StereoPT",
"license": "MIT",
"bugs": {
"url": "https://github.com/StereoPT/pdf-manhwa/issues"
},
"homepage": "https://github.com/StereoPT/pdf-manhwa#readme",
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
},
"dependencies": {
"axios": "^0.21.0",
"cheerio": "^1.0.0-rc.3",
"ora": "^5.1.0",
"pdfkit": "^0.11.0",
"readline-sync": "^1.4.10",
"sanitize-filename": "^1.6.3",
"yargs": "^16.1.1"
}
}