-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.8 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
{
"name": "orbit-browser",
"version": "0.6.0",
"description": "Local browser runtime orchestrator for isolated Chrome profiles and automation tasks.",
"private": true,
"type": "module",
"license": "MIT",
"packageManager": "pnpm@10.30.3",
"keywords": [
"tauri",
"browser-automation",
"chrome",
"cdp",
"desktop"
],
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc && vite build",
"check:version": "node scripts/check-version.mjs",
"check": "pnpm check:version && pnpm build && pnpm test:rust",
"preview": "vite preview",
"tauri": "tauri",
"tauri:build": "tauri build",
"tauri:dev": "tauri dev",
"test:rust": "cargo test --manifest-path src-tauri/Cargo.toml",
"icons:regenerate": "node scripts/regenerate-icons.mjs"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.4",
"@codemirror/search": "^6.7.1",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.6",
"@tanstack/react-query": "^5.83.0",
"@tauri-apps/api": "^2.5.0",
"highlight.js": "^11.11.1",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.28.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tauri-apps/cli": "^2.5.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}