-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
106 lines (106 loc) · 3.57 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
106
{
"name": "ComicRead",
"version": "8.7.3",
"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",
"check": "tsc -noEmit && eslint .",
"pwa-assets-generator": "pwa-assets-generator",
"pwa:dev": "vite serve src/pwa",
"pwa:build": "vite build src/pwa",
"pwa:preview": "vite preview src/pwa",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@material-design-icons/svg": "^0.14.13",
"@placemarkio/flat-drop-files": "^1.0.2",
"@solid-primitives/scheduled": "^1.4.2",
"@solid-primitives/set": "^0.4.9",
"browser-fs-access": "^0.35.0",
"fast-deep-equal": "^3.1.3",
"fflate": "^0.8.1",
"jsencrypt": "^3.3.2",
"libarchive.js": "1.3.0",
"magic-bytes.js": "^1.8.0",
"marked": "^11.1.1",
"normalize.css": "^8.0.1",
"protobufjs": "^7.2.6",
"pwa-install-handler": "^2.5.0",
"qr-scanner": "^1.4.2",
"solid-element": "^1.8.0",
"solid-js": "^1.8.12",
"water.css": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-import-attributes-to-assertions": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.8",
"@jackfranklin/rollup-plugin-markdown": "^0.4.0",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@solidjs/router": "^0.10.9",
"@types/libarchive.js": "^1.3.4",
"@types/shelljs": "^0.8.15",
"@types/wicg-file-system-access": "^2023.10.4",
"@types/wicg-web-app-launch": "^2023.1.3",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.4.17",
"axios": "^1.6.7",
"babel-preset-solid": "^1.8.12",
"cssnano": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-i18n": "^2.2.0",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-solid": "^0.13.1",
"fake-indexeddb": "^5.0.2",
"jsdom": "^24.0.0",
"markdown-it-image-size": "^14.1.0",
"postcss-import": "^16.0.0",
"postcss-nesting": "^12.0.2",
"prettier": "^3.2.4",
"release-it": "^17.0.1",
"rollup": "^4.9.6",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-ts": "^3.4.5",
"rollup-plugin-watch-external": "^1.0.2",
"shelljs": "^0.8.5",
"stylelint": "^16.2.0",
"stylelint-config-clean-order": "^5.4.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"svgo": "^3.2.0",
"tslib": "^2.6.2",
"type-fest": "^4.10.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-pwa": "^0.17.4",
"vite-plugin-solid": "^2.8.3",
"vitepress": "1.0.0-rc.40",
"vitest": "^1.2.1"
}
}