-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.61 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.61 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
{
"name": "trunktail",
"scripts": {
"dev": "bun run --cwd apps/trunktail dev",
"dev:tauri": "bun run --cwd apps/trunktail dev:tauri",
"dev:docs": "bun run --cwd apps/docs dev",
"build": "bun run --cwd apps/trunktail build",
"build:tauri": "bun run --cwd apps/trunktail build:tauri",
"build:docs": "bun run --cwd apps/docs build",
"preview:docs": "bun run --cwd apps/docs preview",
"lint:fix": "oxlint --fix",
"format:fix": "prettier . --write --experimental-cli",
"format:swift": "swift-format format ./apps/trunktail/swift-lib/Sources/container-bridge/ --recursive -i"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@heroui/badge": "^2.2.14-beta.2",
"@heroui/button": "^2.2.22-beta.2",
"@heroui/card": "^2.2.22-beta.1",
"@heroui/chip": "^2.2.19-beta.0",
"@heroui/code": "^2.2.17-beta.2",
"@heroui/dropdown": "^2.3.23-beta.0",
"@heroui/input": "^2.4.23-beta.0",
"@heroui/link": "^2.2.20-beta.2",
"@heroui/modal": "^2.2.19-beta.2",
"@heroui/scroll-shadow": "^2.3.15-beta.2",
"@heroui/system": "^2.4.19-beta.2",
"@heroui/theme": "^2.4.18-beta.5",
"@heroui/tooltip": "^2.2.19-beta.2",
"@tailwindcss/vite": "^4.1.10",
"@tanstack/react-query": "^5.81.2",
"@tanstack/react-router": "^1.121.0",
"@tanstack/react-router-devtools": "^1.121.0",
"@tanstack/router-plugin": "^1.121.0",
"@tauri-apps/api": "^2.6.0",
"@tauri-apps/plugin-clipboard-manager": "~2",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-opener": "~2",
"@tauri-apps/plugin-shell": "~2",
"@trunktail/commands": "workspace:*",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compare-versions": "^6.1.1",
"date-fns": "^4.1.0",
"filesize": "^10.1.6",
"framer-motion": "^12.18.1",
"lucide-react": "^0.515.0",
"pretty-bytes": "^7.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-resizable-panels": "^3.0.3",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"tailwind-scrollbar-hide": "^4.0.0",
"usehooks-ts": "^3.1.1",
"zod": "^3.25.61"
},
"devDependencies": {
"@tauri-apps/cli": "^2.5.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.21",
"oxlint": "^1.4.0",
"postcss": "^8.5.5",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^4.1.9",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-tsconfig-paths": "^5.1.4"
}
}