This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@annadamm/scribblehub-to-epub",
"version": "3.0.0-1",
"description": "Downloads a book from scribblehub.com and outputs it as an epub file",
"main": "src/index.ts",
"scripts": {
"build": "node esbuild.js",
"build:watch": "npm run build -- --watch",
"prepare": "npm run build -- --minify",
"run": "node dist/src/index.js",
"lint": "npm run lint:css && npm run lint:md && npm run lint:ts",
"lint:fix": "npm run lint:css:fix && npm run lint:md:fix && npm run lint:ts:fix",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:md": "markdownlint \"**/*.md\" --ignore node_modules",
"lint:md:fix": "npm run lint:md -- --fix",
"lint:ts": "eslint src",
"lint:ts:fix": "npm run lint:ts -- --fix"
},
"keywords": [
"scribblehub",
"fanfiction",
"webnovels",
"books",
"epub"
],
"author": {
"name": "Anna Damm",
"email": "anna.damm87@googlemail.com",
"url": "https://anna-damm.de/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnnaDamm/scribblehub-to-epub.git"
},
"license": "ISC",
"homepage": "https://github.com/AnnaDamm/scribblehub-to-epub/",
"bugs": "https://github.com/AnnaDamm/scribblehub-to-epub/issues",
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/cheerio": "^0.22.35",
"@types/cli-progress": "^3.11.5",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"cheerio": "^1.0.0-rc.12",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"epub-gen-memory": "^1.0.10",
"esbuild": "^0.21.5",
"esbuild-plugin-inline-import": "^1.0.4",
"eslint": "^8.54.0",
"find-cache-dir": "^5.0.0",
"markdownlint-cli": "^0.40.0",
"pre-commit": "^1.2.2",
"promise-throttle-all": "^1.1.1",
"raw-loader": "^4.0.2",
"scrappey-wrapper": "^1.0.8",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2",
"typescript-memoize": "^1.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"yesno": "^0.4.0"
},
"bin": {
"scribblehub-to-epub": "dist/src/index.js"
},
"files": [
"*.md",
"*.txt",
"dist/**/*.{js,json}"
],
"pre-commit": [
"lint:fix"
],
"engines": {
"node": ">=22",
"npm": ">=10.0"
},
"engineStrict": true
}