-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.05 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
{
"name": "juejin-book-downloader",
"version": "1.0.0",
"description": "一个用于下载掘金小册的Chrome扩展工具 / A Chrome extension tool for downloading books from Juejin",
"private": true,
"author": {
"name": "h7ml",
"email": "[email protected]",
"url": "https://github.com/h7ml"
},
"license": "MIT",
"homepage": "https://github.com/h7ml/juejin-book-downloader",
"repository": {
"type": "git",
"url": "https://github.com/h7ml/juejin-book-downloader.git"
},
"bugs": {
"url": "https://github.com/h7ml/juejin-book-downloader/issues"
},
"keywords": [
"juejin",
"掘金",
"小册",
"下载器",
"chrome-extension",
"book-downloader"
],
"scripts": {
"dev": "rsbuild dev",
"build": "rsbuild build",
"test": "playwright test",
"lint:type": "tsc --noEmit"
},
"type": "module",
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@rspack/cli": "^1.0.14",
"@rspack/plugin-react-refresh": "^1.0.0",
"@webx-kit/runtime": "^0.1.0",
"ahooks": "^3.8.1",
"antd": "^5.21.5",
"file-saver": "^2.0.5",
"html2pdf.js": "^0.10.2",
"jspdf": "^2.5.2",
"jszip": "^3.10.1",
"marked": "^14.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.47.1",
"@rsbuild/core": "^1.0.17",
"@rsbuild/plugin-less": "^1.0.2",
"@rsbuild/plugin-react": "^1.0.5",
"@types/chrome": "^0.0.279",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.8.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@webx-kit/rsbuild-plugin": "^0.1.0",
"@webx-kit/test-utils": "^0.1.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"react-refresh": "^0.14.2",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"webExt": {
"sourceDir": "dist",
"run": {
"startUrl": [
"https://juejin.cn/"
]
}
}
}