-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.02 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "juejinbooksspider",
"type": "module",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "掘金小册爬虫脚本。将小册保存为markdown,pdf,html格式",
"author": {
"name": "h7ml",
"github": "https://github.com/h7ml",
"mail": "[email protected]"
},
"license": "Apache-2.0",
"homepage": "https://h7ml.github.io/juejinBooksSpider",
"repository": {
"type": "git",
"url": "https://github.com/h7ml/juejinBooksSpider.git"
},
"bugs": {
"url": "https://github.com/h7ml/juejinBooksSpider/issues/new"
},
"keywords": [
"稀土掘金",
"掘金",
"掘金小册",
"掘金小册爬虫",
"掘金小册爬虫脚本",
"掘金小册markdown",
"掘金小册pdf",
"juejin",
"book",
"spider",
"markdown",
"pdf",
"html"
],
"sideEffects": false,
"main": "dist/index.cjs",
"types": "src/types.d.ts",
"scripts": {
"dev:all": "cross-env spiderAll=false tsx ./src/index.ts",
"dev": "tsx ./src/index.ts",
"build": "node ./scripts/build.js",
"test": "node ./scripts/build.js && node ./dist/index.cjs https://juejin.cn/book/6844723704639782920",
"build:github": "cross-env APP_BASE_PATH=/juejinBooksSpider/ npm run docs:build",
"docs:dev": "cross-env NODE_ENV=development vitepress dev docs",
"docs:build": "vitepress build docs",
"prepublish": "npm run build",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:md": "markdownlint-cli2 '**/*.md'",
"prepare": "husky install"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.39.3",
"@femm/prettier": "^1.1.0",
"@node-rs/jieba": "^1.6.2",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.4.8",
"@types/puppeteer": "^7.0.4",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@w3ctech-editorial-department/vitepress-auto-configure-nav-sidebar": "^1.0.0",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"esbuild": "^0.18.19",
"eslint": "^8.41.0",
"fs-extra": "^11.1.1",
"hpdf": "^1.0.3",
"html-to-md": "^0.8.3",
"husky": "^8.0.3",
"inquirer": "^9.2.10",
"lint-staged": "^13.2.2",
"log4js": "^6.9.1",
"markdownlint-cli2": "^0.12.1",
"prettier": "^2.8.8",
"puppeteer": "^21.0.1",
"rimraf": "^5.0.1",
"sitemap": "^7.1.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vite": "^4.1.4",
"vitepress": "1.0.0-rc.39",
"vitepress-plugin-back-to-top": "^1.0.1",
"vitepress-plugin-google-analytics": "^1.0.2",
"vitepress-plugin-life-progress": "^0.0.2",
"vitepress-plugin-nprogress": "^0.0.4",
"vitepress-plugin-search": "1.0.4-alpha.19",
"vitepress-plugin-sidebar": "^0.0.7",
"vitepress-plugin-tabs": "^0.5.0",
"vue": "^3.4.15"
},
"volta": {
"node": "18.0.0"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/h7ml/hooks/tree/main/LICENSE"
}
]
}