-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "addon-manager",
"private": true,
"version": "0.0.0",
"description": "Left 4 Dead 2 Addons Manager",
"author": "akkariin",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"tauri:build:win-gnu": "npm run build && cargo build --release --target x86_64-pc-windows-gnu --manifest-path src-tauri/Cargo.toml",
"lint": "oxlint",
"preview": "vite preview",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"test": "vitest run"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"i18next": "^26.3.4",
"lucide-react": "^1.23.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8"
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"esbuild": "^0.28.1",
"jsdom": "^29.1.1",
"oxlint": "^1.71.0",
"typescript": "^6.0.3",
"vite": "^8.1.1",
"vitest": "^4.1.9"
}
}