-
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) · 2.1 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.1 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": "openloop",
"private": true,
"version": "0.2.0",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare:sidecars": "node scripts/prepare-sidecars.mjs",
"format": "oxfmt src/ tests/",
"format:check": "oxfmt --check src/ tests/",
"lint": "oxlint src/ tests/",
"test": "vitest",
"test:run": "vitest run --no-file-parallelism --maxWorkers=1",
"test:coverage": "vitest run --coverage --no-file-parallelism --maxWorkers=1",
"typecheck": "tsc --noEmit",
"tauri": "tauri",
"release:check": "pnpm typecheck && pnpm test:run && pnpm build && cargo fmt --manifest-path src-tauri/Cargo.toml --check && pnpm rust:check && cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings && cargo test -q --manifest-path src-tauri/Cargo.toml",
"release:build": "pnpm prepare:sidecars && pnpm tauri build",
"rust:fmt": "cargo fmt --manifest-path src-tauri/Cargo.toml",
"rust:check": "cargo check --manifest-path src-tauri/Cargo.toml",
"i18n:audit": "node scripts/i18n-audit.mjs"
},
"dependencies": {
"@tanstack/react-virtual": "^3.14.2",
"@tauri-apps/api": "2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"i18next": "^26.3.1",
"lucide-react": "^1.17.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@tauri-apps/cli": "2.11.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.8",
"jsdom": "^29.1.1",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"playwright": "^1.60.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"packageManager": "pnpm@11.5.2"
}