-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "lore-ui",
"version": "0.0.0",
"description": "Lore desktop UI (React + TypeScript + Vite) over the generated Tauri IPC contract.",
"license": "Apache-2.0",
"homepage": "https://github.com/hsusul/lore",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check": "npm run typecheck && npm run lint && npm test",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9",
"@tauri-apps/cli": "^2",
"@testing-library/react": "^16",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9",
"eslint-plugin-react-hooks": "^5",
"jsdom": "^25",
"typescript": "^5.6.3",
"typescript-eslint": "^8",
"vite": "^6",
"vitest": "^2"
}
}