-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.86 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.86 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
{
"name": "openhelm",
"version": "0.1.0",
"private": true,
"license": "BUSL-1.1",
"type": "module",
"workspaces": [
"agent",
"shared",
"worker"
],
"scripts": {
"predev": "if lsof -ti tcp:1420 >/dev/null 2>&1; then echo ''; echo 'Port 1420 is already in use — something else is running there (probably an existing vite / dev:cloud).'; echo 'Stop it first: kill $(lsof -ti tcp:1420)'; echo ''; exit 1; fi",
"dev": "vite",
"dev:local": "npm --workspace=agent run build && tauri dev",
"predev:cloud": "node scripts/check-e2b-stamp.mjs",
"dev:cloud": "concurrently -n 'vite,worker' -c 'cyan,yellow' \"VITE_WORKER_URL=http://localhost:8080 dotenv -e .env.local -- vite\" \"dotenv -e .env.local -- npm --prefix worker run dev\"",
"dev:cloud:remote-only": "dotenv -e .env.local -- vite",
"build:e2b": "./e2b/build.sh",
"build:e2b:dry": "./e2b/build.sh --dry-run",
"check:e2b": "node scripts/check-e2b-stamp.mjs",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -b",
"test": "npm run test --workspace=agent && npx vitest run --config vitest.config.ts",
"test:ui": "npx vitest run --config vitest.config.ts",
"test:agent": "npm run test --workspace=agent",
"lint": "eslint .",
"tauri": "tauri",
"tauri:build": "tauri build && node scripts/patch-bundle.mjs"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@sentry/node": "^10.49.0",
"@sentry/react": "^10.49.0",
"@sentry/vite-plugin": "^5.2.0",
"@supabase/supabase-js": "^2.104.0",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-autostart": "^2",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-notification": "^2",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"lucide-react": "^0.577.0",
"posthog-js": "^1.369.0",
"radix-ui": "^1.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.3",
"recharts": "^3.8.1",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.4.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.4",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.2.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.19.0",
"jsdom": "^28.1.0",
"rollup": "^4.60.1",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^4.1.4"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.60.2"
}
}