This repository was archived by the owner on Jul 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.45 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
{
"name": "@toro/monorepo",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"@agentclientprotocol/sdk": "1.1.0",
"@base-ui-components/react": "1.0.0-rc.0",
"@effect/platform-node": "4.0.0-beta.92",
"@playwright/test": "1.61.1",
"@tailwindcss/vite": "4.3.2",
"@tanstack/react-query": "5.101.2",
"@tanstack/react-router": "1.170.16",
"@tanstack/react-start": "1.168.26",
"@tanstack/router-plugin": "1.168.18",
"@tauri-apps/api": "2.11.1",
"@tauri-apps/cli": "2.11.4",
"@tauri-apps/plugin-dialog": "2.7.1",
"@types/bun": "1.3.14",
"@types/node": "26.0.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"clsx": "2.1.1",
"effect": "4.0.0-beta.92",
"lucide-react": "1.22.0",
"oxfmt": "0.57.0",
"oxlint": "1.72.0",
"oxlint-tsgolint": "0.23.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-markdown": "10.1.0",
"streamdown": "2.5.0",
"tailwind-merge": "3.6.0",
"tailwindcss": "4.3.2",
"turbo": "2.10.1",
"typescript": "6.0.3",
"vite": "8.1.0",
"vitest": "4.1.9",
"zod": "4.4.3"
}
},
"type": "module",
"scripts": {
"build": "turbo build",
"desktop:dev": "bun --filter @toro/desktop tauri dev",
"dev": "turbo dev --parallel",
"fmt": "oxfmt --disable-nested-config --check",
"fmt:fix": "oxfmt --disable-nested-config",
"host:dev": "bun --filter @toro/host dev",
"lint": "oxlint --disable-nested-config --type-aware --type-check --no-error-on-unmatched-pattern",
"lint:fix": "oxlint --disable-nested-config --fix --type-aware --type-check --no-error-on-unmatched-pattern",
"test": "turbo test",
"typecheck": "turbo typecheck",
"verify": "bun run fmt && bun run lint && bun run typecheck && bun run test && bun run build",
"verify:internal": "node scripts/verify-internal.mjs",
"verify:ui": "node scripts/verify-ui.mjs"
},
"devDependencies": {
"@effect/platform-node": "catalog:",
"@playwright/test": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"effect": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "bun@1.3.14"
}