-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.78 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.78 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "kindle-hub",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Interactive web app for kindle-tools-ts - Import, edit, and export Kindle highlights",
"keywords": [
"vue",
"vite",
"typescript",
"kindle",
"ebooks",
"clippings",
"notes",
"highlight",
"export",
"obsidian",
"joplin"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "pnpm format",
"format": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"check": "pnpm lint && pnpm typecheck && pnpm test:run",
"clean": "rimraf dist",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,vue,js}": "eslint --fix"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@tanstack/vue-virtual": "^3.13.18",
"@vueuse/core": "^14.1.0",
"date-fns": "^4.1.0",
"dexie": "^4.2.1",
"dompurify": "^3.3.1",
"echarts": "^6.0.0",
"fuse.js": "^7.1.0",
"jszip": "^3.10.1",
"kindle-tools-ts": "file:kindle-tools-ts-0.5.0.tgz",
"lucide-vue-next": "^0.562.0",
"pinia": "^3.0.4",
"vue": "^3.5.27",
"vue-echarts": "^8.0.1",
"vue-i18n": "^11.2.8",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.7.0",
"@tailwindcss/typography": "^0.5.19",
"@types/dompurify": "^3.2.0",
"@types/node": "^25.0.9",
"@vitejs/plugin-vue": "^6.0.3",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.7.0",
"globals": "^17.0.0",
"happy-dom": "^20.3.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"rimraf": "^6.1.2",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^31.0.0",
"unplugin-vue-router": "^0.19.2",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.17",
"vue-tsc": "^3.2.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.7.0",
"author": "Andrés M. Jiménez",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KindleTools/KindleHub.git"
},
"homepage": "https://github.com/KindleTools/KindleHub#readme",
"bugs": {
"url": "https://github.com/KindleTools/KindleHub/issues"
}
}