-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "hito",
"private": true,
"version": "0.3.6",
"type": "module",
"scripts": {
"tauri": "tauri",
"dev": "vite",
"build": "pnpm version:sync && tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=verbose",
"version:sync": "node scripts/sync-version.js",
"version:patch": "pnpm version patch && pnpm version:sync",
"version:minor": "pnpm version minor && pnpm version:sync",
"version:major": "pnpm version major && pnpm version:sync"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^2.1.5",
"jsdom": "^27.2.0",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-store": "^2",
"fast-deep-equal": "^3.1.3",
"jotai": "^2.15.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"uuid": "^13.0.0"
}
}