-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "sidearm",
"private": true,
"version": "0.1.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"check:web": "tsc --noEmit",
"check:rust": "cargo check --manifest-path src-tauri/Cargo.toml",
"check": "npm run check:web && npm run check:rust",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"i18next": "^25.8.18",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.8"
},
"devDependencies": {
"@rolldown/plugin-babel": "^0.2.1",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"fast-check": "^4.6.0",
"jsdom": "^28.1.0",
"typescript": "~5.9.0",
"vite": "^8.0.0",
"vitest": "^4.1.0"
}
}