-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.87 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.87 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
{
"name": "mcp-linker",
"description": "A cross-platform desktop manager for MCP servers and client using Tauri + React.",
"repository": {
"type": "git",
"url": "https://github.com/milisp/mcp-linker"
},
"author": "milisp",
"license": "AGPL-3.0, Commercial",
"private": true,
"version": "2.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@hookform/resolvers": "^4.1.3",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/supabase-js": "^2.100.0",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-table": "^8.21.3",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "~2.3.2",
"@tauri-apps/plugin-deep-link": "~2.4.7",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "~2",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "~2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"@types/lodash": "^4.17.24",
"axios": "^1.13.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.2.1",
"lodash": "^4.17.23",
"lucide-react": "^1.8.0",
"radix-ui": "^1.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.72.0",
"react-i18next": "^15.7.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"use-debounce": "^10.1.0",
"uuid": "^13.0.0",
"zod": "^3.25.76",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2.10.1",
"@tauri-apps/plugin-fs": "~2.4.5",
"@types/node": "^22.19.15",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^4.7.0",
"esbuild": "0.25.5",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "~5.6.3",
"vite": "^6.4.1"
},
"engines": {
"node": ">=20"
}
}