-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.98 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.98 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
{
"name": "kaede",
"private": true,
"type": "module",
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"build:debug": "tauri build --debug",
"dev:frontend": "vite",
"build:frontend": "vue-tsc -b && vite build",
"preview:frontend": "vite preview",
"test": "vitest run ./src",
"lint": "eslint .",
"typecheck": "vue-tsc -b"
},
"dependencies": {
"@fabianlars/tauri-plugin-oauth": "2",
"@module-federation/enhanced": "^0.21.6",
"@tanstack/vue-query": "^5.90.7",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-http": "~2",
"@tauri-apps/plugin-log": "~2",
"@tauri-apps/plugin-notification": "~2",
"@tauri-apps/plugin-opener": "~2",
"@tauri-apps/plugin-os": "~2",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-upload": "~2",
"@vueuse/core": "^14.0.0",
"htmlparser2": "^10.0.0",
"m3ripple-vue": "^0.1.0",
"ses": "^1.14.0",
"tauri-plugin-drpc": "^1.0.3",
"tauri-plugin-shellx-api": "2.0.16",
"typebox": "^1.0.8",
"vue": "^3.5.17",
"vue-virtualised": "^0.1.8"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.34.0",
"@iconify-json/lucide": "^1.2.70",
"@stylistic/eslint-plugin": "^5.2.3",
"@tauri-apps/cli": "^2.8.3",
"@types/node": "^24.3.0",
"@types/unzipper": "^0.10.11",
"@unocss/eslint-config": "^66.4.2",
"@vitejs/plugin-vue": "^6.0.0",
"@vue-require-id/eslint-plugin": "^1.0.4",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.34.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.5.0",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-vue": "^10.4.0",
"globals": "^16.3.0",
"typescript": "~5.8.3",
"unocss": "^66.4.2",
"vite": "^7.0.4",
"vite-plugin-eslint2": "^5.0.4",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.12"
}
}