-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.92 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
{
"name": "tabby",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev --config src-tauri/tauri.dev.conf.json",
"lint": "eslint src && ./scripts/check-dto-boundary.sh",
"lint:dto-boundary": "./scripts/check-dto-boundary.sh",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:rust": "cd src-tauri && cargo fmt --all --check && cargo clippy --workspace --all-targets --all-features -- -D warnings && cargo test --workspace",
"verify": "bun run lint && bun run typecheck && bun run test",
"verify:all": "bun run verify && bun run test:rust",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.16",
"@tauri-apps/api": "^2.10.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"lucide-react": "^0.542.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^3.0.6",
"tailwindcss": "^4.1.16",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-webgl": "^0.16.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@tauri-apps/cli": "^2.10.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.3.0",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.35.0",
"jsdom": "^27.0.0",
"knip": "^5.86.0",
"typescript": "^5.6.3",
"vite": "^6.4.1",
"vitepress": "^1.6.4",
"vitest": "^3.2.4"
}
}