-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.87 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "asc-track-designer",
"version": "3.0.0",
"description": "ASC实验室智能车赛道设计器 - 专业的赛道布局设计工具",
"private": true,
"author": "ASC实验室",
"keywords": [
"智能车",
"赛道设计",
"ASC",
"实验室工具"
],
"scripts": {
"dev": "tauri dev",
"dev:web": "vite --host 127.0.0.1",
"build": "npm run typecheck && vite build",
"preview": "vite preview --host 127.0.0.1",
"dist": "npm run dist:win",
"dist:win": "powershell -ExecutionPolicy Bypass -File scripts/package-portable.ps1",
"manifest:update": "node scripts/create-update-manifest.mjs",
"lint": "eslint src tests --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:check": "cargo check --manifest-path src-tauri/Cargo.toml",
"tauri:build": "tauri build --no-bundle",
"clean": "rimraf dist release src-tauri/target node_modules"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@tauri-apps/cli": "^2.11.4",
"@types/node": "^20.17.9",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/parser": "^8.39.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vite": "^6.1.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@supabase/supabase-js": "^2.111.0",
"@tanstack/react-query": "^5.101.4",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"lucide-react": "^0.468.0",
"react-router-dom": "^6.30.4",
"zustand": "^5.0.8"
}
}