forked from hymbz/ComicReadScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.07 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.07 KB
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
{
"name": "ComicRead",
"version": "6.5.2",
"description": "为漫画站增加双页阅读模式并优化使用体验。",
"author": "hymbz",
"license": "AGPL-3.0-or-later",
"private": "true",
"scripts": {
"dev": "rollup --config --watch --environment NODE_ENV:development --configPlugin rollup-plugin-ts",
"build": "rollup --config --configPlugin rollup-plugin-ts",
"release": "node release.mjs",
"release:push": "node release.mjs push",
"test": "vitest",
"eslint": "eslint .",
"pwa-assets-generator": "pwa-assets-generator",
"dev:pwa": "vite serve src/pwa",
"build:pwa": "vite build src/pwa",
"preview:pwa": "vite preview src/pwa"
},
"dependencies": {
"@material-design-icons/svg": "^0.14.9",
"fflate": "^0.8.0",
"jsencrypt": "^3.3.2",
"libarchive.js": "^1.3.0",
"normalize.css": "^8.0.1",
"panzoom": "^9.4.3",
"protobufjs": "^7.2.4",
"pwa-install-handler": "^2.5.0",
"solid-element": "^1.7.1",
"solid-js": "^1.7.8",
"throttle-debounce": "^5.0.0",
"water.css": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@jackfranklin/rollup-plugin-markdown": "^0.4.0",
"@release-it/conventional-changelog": "^7.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@solidjs/router": "^0.8.2",
"@types/libarchive.js": "^1.3.1",
"@types/shelljs": "^0.8.12",
"@types/throttle-debounce": "^5.0.0",
"@types/wicg-file-system-access": "^2020.9.6",
"@types/wicg-web-app-launch": "^2023.1.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"autoprefixer": "^10.4.14",
"babel-preset-solid": "^1.7.7",
"cssnano": "^6.0.1",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-solid": "^0.12.1",
"fake-indexeddb": "^4.0.2",
"jsdom": "^22.1.0",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.0",
"prettier": "^3.0.0",
"release-it": "^16.1.3",
"rollup": "^3.26.3",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-ts": "^3.2.0",
"rollup-plugin-watch-external": "^1.0.2",
"shelljs": "^0.8.5",
"stylelint": "^15.10.2",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-high-performance-animation": "^1.8.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.0",
"svgo": "^3.0.2",
"tslib": "^2.6.0",
"vite": "^4.4.5",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.33.0"
}
}