-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 780 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 780 Bytes
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
{
"name": "keyboard-app",
"private": true,
"version": "0.4.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"check": "biome check ./src",
"check:fix": "biome check --write ./src",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@tauri-apps/cli": "^2.11.1",
"@vitest/coverage-v8": "4.1.6",
"typescript": "~6.0.3",
"vite": "^8.0.13",
"vitest": "^4.1.6"
}
}