-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.31 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.31 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
{
"name": "task-bridge",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint src",
"check-types": "tsc --noEmit",
"qc": "pnpm check-types && pnpm lint",
"fmt": "prettier . --write",
"check-fmt": "prettier . --check",
"icon": "tauri icon ./public/icon.png",
"ts-rs": "cd src-tauri && cargo test export_bindings",
"dev2": "pnpm ts-rs && pnpm tauri dev"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.4",
"@radix-ui/react-collapsible": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-hover-card": "^1.1.11",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-menubar": "^1.1.15",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@tailwindcss/vite": "^4.0.16",
"@tanstack/react-query": "^5.71.3",
"@tanstack/react-query-devtools": "^5.71.3",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-deep-link": "~2",
"@tauri-apps/plugin-http": "~2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-store": "~2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.484.0",
"next-themes": "^0.4.6",
"octokit": "^4.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.4.0",
"sonner": "^2.0.2",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.16",
"tw-animate-css": "^1.2.4"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@tanstack/eslint-plugin-query": "^5.68.0",
"@tauri-apps/cli": "^2",
"@types/node": "^22.13.13",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@uiw/react-json-view": "2.0.0-alpha.32",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.23.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "~5.6.2",
"typescript-eslint": "^8.28.0",
"vite": "^6.0.3"
}
}