-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "streamer",
"private": true,
"version": "0.9.0",
"type": "module",
"scripts": {
"dev": "tauri dev",
"dev:vite": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"typecheck": "tsc --noEmit",
"lint": "oxlint src --deny-warnings",
"test": "vitest run --passWithNoTests",
"rust:check": "cargo check --manifest-path src-tauri/Cargo.toml",
"rust:clippy": "cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings",
"rust:fmt": "cargo fmt --manifest-path src-tauri/Cargo.toml --check",
"prepare": "husky"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
"@tauri-apps/plugin-opener": "^2",
"fzf": "^0.5.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hot-toast": "^2.6.0",
"zustand": "^5"
},
"devDependencies": {
"@tailwindcss/vite": "^4",
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"lint-staged": "^16.2.7",
"oxlint": "^1.43.0",
"tailwindcss": "^4",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^4.0.18"
},
"volta": {
"node": "22.17.1",
"yarn": "4.9.2"
},
"packageManager": "yarn@4.9.2",
"lint-staged": {
"src/**/*.{ts,tsx}": "oxlint --deny-warnings"
}
}