-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
{
"name": "mangaonlineviewer",
"description": "Userscript that helps to read Manga faster by loading all the pages at once",
"version": "44.0.0",
"scripts": {
"start": "vite",
"build": "vite build --mode dev",
"release": "vite build --mode main && vite build --mode adult"
},
"author": "TagoDR",
"license": "MIT",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TagoDR/MangaOnlineViewer.git"
},
"keywords": [
"manga",
"reader",
"viewer",
"online",
"loader"
],
"bugs": "https://github.com/TagoDR/MangaOnlineViewer/issues",
"homepage": "https://github.com/TagoDR/MangaOnlineViewer#readme",
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/file-saver": "^2.0.7",
"@types/imagesloaded": "^4.1.6",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.10",
"@types/nprogress": "^0.2.3",
"@types/tampermonkey": "^5.0.4",
"@types/tinycolor2": "^1.4.6",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"del": "^8.0.0",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"rollup-plugin-external-globals": "^0.13.0",
"rollup-plugin-prettier": "^4.1.1",
"typescript": "^5.7.3",
"userscript-metadata-generator": "^0.2.4",
"vite": "^6.0.11",
"vite-plugin-banner": "^0.8.0",
"vite-svg-loader": "^5.1.0"
},
"dependencies": {
"@gerhobbelt/keyscss": "^1.1.3-6",
"blob-util": "^2.0.2",
"file-saver": "^2.0.5",
"hotkeys-js": "^3.13.9",
"imagesloaded": "^5.0.0",
"jszip": "=3.9.1",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"range-slider-input": "^2.4.4",
"sweetalert2": "=11.4.8",
"tinycolor2": "^1.6.0",
"ua-parser-js": "^1.0.40"
},
"browserslist": [
"defaults and fully supports es6-module",
"maintained node versions"
],
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
}
}