-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.45 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
{
"name": "quicklook",
"version": "0.8.2",
"description": "Windows 平台的文件预览工具",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"tauri": "tauri"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@handsontable/vue3": "^14.6.1",
"@shikijs/markdown-it": "^1.24.0",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-autostart": "~2",
"@tauri-apps/plugin-dialog": "~2.0.1",
"@tauri-apps/plugin-fs": "~2.0.3",
"@tauri-apps/plugin-log": "^2.0.1",
"@tauri-apps/plugin-shell": "~2.0.1",
"@tauri-apps/plugin-sql": "~2",
"@tauri-apps/plugin-updater": "~2",
"@vicons/fluent": "^0.12.0",
"@vueuse/core": "^12.0.0",
"codemirror": "^6.0.1",
"docx-preview": "^0.3.3",
"element-plus": "^2.9.0",
"handsontable": "^14.6.1",
"leafer-ui": "^1.0.10",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-container": "^4.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-katex": "^2.0.3",
"markdown-it-table-of-contents": "^0.8.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-and-anchor": "^4.2.0",
"naive-ui": "^2.40.3",
"pdfjs-dist": "^4.9.124",
"pinia": "^2.2.8",
"shiki": "^1.24.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"xgplayer": "^3.0.20"
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vitest/eslint-plugin": "1.1.7",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.16.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"npm-run-all2": "^7.0.1",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"typescript": "~5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
},
"volta": {
"node": "22.12.0",
"pnpm": "9.15.0"
}
}