-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.55 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.55 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
{
"name": "light_novel_shelf",
"version": "0.0.1",
"description": "A Online Novel Reading Project",
"productName": "轻书架",
"author": "wuyu <https://github.com/wuyu8512>",
"type": "module",
"private": false,
"scripts": {
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
"lint:fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --fix",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"dev": "quasar dev",
"build": "quasar build",
"build:pwa": "quasar build -m pwa",
"postinstall": "quasar prepare"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^5.0.1",
"@joplin/turndown": "^4.0.82",
"@joplin/turndown-plugin-gfm": "^1.0.64",
"@microsoft/signalr": "^10.0.0",
"@microsoft/signalr-protocol-msgpack": "^10.0.0",
"@quasar/extras": "^1.17.0",
"@vueuse/core": "^14.0.0",
"blurhash": "^2.0.5",
"cropperjs": "^1.6.2",
"dayjs": "^1.11.18",
"dompurify": "^3.4.0",
"hash.js": "^1.1.7",
"immer": "^11.0.1",
"localforage": "^1.10.0",
"lodash.isequal": "^4.5.0",
"md-editor-v3": "^6.2.1",
"minimasonry": "^1.3.2",
"nanoid": "^5.1.6",
"overlayscrollbars-vue": "^0.5.9",
"pako": "^2.1.0",
"pinia": "^3.0.4",
"quasar": "^2.18.6",
"register-service-worker": "^1.7.2",
"screenfull": "^6.0.2",
"v-viewer": "^3.0.22",
"vue": "^3.5.25",
"vue-router": "^4.6.4",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@quasar/app-vite": "^2.4.0",
"@types/lodash.isequal": "^4.5.8",
"@types/minimasonry": "^1.3.5",
"@types/pako": "^2.0.4",
"@types/sanitize-html": "^2.16.0",
"@types/sortablejs": "^1.15.9",
"@types/turndown": "^5.0.6",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vue": "^9.33.0",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"typescript": "~5.9.3",
"unplugin-auto-import": "^20.3.0",
"vue-tsc": "^3.1.2",
"workbox-build": "^7.4.0",
"workbox-cacheable-response": "^7.3.0",
"workbox-core": "^7.4.0",
"workbox-expiration": "^7.4.0",
"workbox-precaching": "^7.4.0",
"workbox-routing": "^7.4.0",
"workbox-strategies": "^7.4.0"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}