-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.34 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
{
"name": "md-reader",
"private": true,
"version": "0.3.0",
"type": "module",
"description": "A lightweight, fast, WYSIWYG Markdown desktop reader built with Tauri 2 + Vue 3. Supports KaTeX, Mermaid, full-text search, and PDF/DOCX export.",
"author": "Neilooo",
"license": "MIT",
"homepage": "https://github.com/Neilooo/md-reader#readme",
"repository": {
"type": "git",
"url": "https://github.com/Neilooo/md-reader.git"
},
"bugs": {
"url": "https://github.com/Neilooo/md-reader/issues"
},
"keywords": [
"markdown",
"reader",
"viewer",
"desktop",
"tauri",
"vue3",
"rust",
"katex",
"mermaid",
"pdf-export"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,vue,css,json}\""
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"dependencies": {
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/search": "^6.7.1",
"@codemirror/state": "^6.7.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.2",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"codemirror": "^6.0.2",
"dompurify": "^3.2.3",
"highlight.js": "^11.10.0",
"katex": "^0.17.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-task-lists": "^2.1.1",
"mermaid": "^11.15.0",
"pinia": "^3.0.4",
"vue": "^3.5.13",
"vue-i18n": "^11.4.6",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.1.0",
"@types/katex": "^0.16.8",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-emoji": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^10.5.0",
"eslint-plugin-vue": "^10.9.2",
"prettier": "^3.8.4",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^2.1.10"
}
}