-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "zeus",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"sidecar:build": "bash scripts/build-ddgs-sidecar.sh",
"sidecar:build:win": "powershell -ExecutionPolicy Bypass -File scripts/build-ddgs-sidecar.ps1",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"browser:driver:test": "node scripts/zeus-browser-driver.test.mjs",
"browser:smoke": "node scripts/browser-smoke.mjs",
"browser:smoke:visible": "ZEUS_BROWSER_VISIBLE=1 node scripts/browser-smoke.mjs",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^26.1.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^25.0.1",
"playwright": "^1.57.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^4.1.9"
}
}