-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
72 lines (72 loc) · 1.94 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
{
"name": "novel-downloader",
"version": "5.2.0",
"description": "novel downloader",
"type": "module",
"source": "src/index.js",
"scripts": {
"dev": "webpack serve --node-env development",
"lint": "eslint src",
"pretty": "prettier . -w",
"build": "webpack build -c webpack.config.js",
"build-greasyfork": "webpack -c webpack-greasyfork.config.js",
"github": "run-s lint build build-greasyfork",
"prepare": "husky install"
},
"sideEffects": [
"./src/index.ts",
"./src/global.ts",
"src/ui/*",
"*.css"
],
"author": "BGME",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/types": "^7.24.0",
"@types/crypto-js": "^4.2.2",
"@types/css-tree": "^2.3.7",
"@types/file-saver": "^2.0.7",
"@types/got": "^9.6.12",
"@types/mime-db": "^1.43.5",
"@types/node": "^20.11.24",
"@types/nunjucks": "^3.2.6",
"@types/tampermonkey": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"got": "^14.2.0",
"html-loader": "^5.0.0",
"husky": "^9.0.11",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"simple-git": "^3.22.0",
"ts-loader": "^9.5.1",
"tsx": "^4.19.2",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-userscript": "^3.2.2"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"crypto-js": "^4.2.0",
"css-tree": "^2.3.1",
"fflate": "^0.8.2",
"file-saver": "^2.0.5",
"loglevel": "^1.9.1",
"magic-bytes.js": "^1.10.0",
"mime-db": "^1.52.0",
"nunjucks": "^3.2.4",
"p-limit": "^5.0.0",
"streamsaver": "^2.0.6",
"vue": "^3.4.21"
},
"packageManager": "[email protected]"
}