-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.55 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.55 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "antigravity-agent",
"private": true,
"version": "1.7.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:local": "tauri build --no-bundle",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@fontsource/inter": "^5.2.8",
"@fontsource/noto-sans-sc": "^5.2.8",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-http": "^2.5.4",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tauri-apps/plugin-updater": "^2.9.0",
"antd": "^6.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"events": "^3.3.0",
"i18next": "^25.7.3",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.556.0",
"motion": "^12.23.26",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hot-toast": "^2.6.0",
"react-i18next": "^16.5.0",
"tailwind-merge": "^2.6.0",
"worker-timers": "^8.0.30",
"zustand": "^5.0.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@storybook/addon-a11y": "^10.1.6",
"@storybook/addon-docs": "^10.1.6",
"@storybook/addon-onboarding": "^10.1.6",
"@storybook/addon-vitest": "^10.1.6",
"@storybook/react-vite": "^10.1.6",
"@swc/plugin-emotion": "^14.0.1",
"@tailwindcss/vite": "^4.1.17",
"@tauri-apps/cli": "^2.9.5",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-i18next": "^7.8.3",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser-playwright": "^4.0.15",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"jsdom": "^27.3.0",
"playwright": "^1.57.0",
"storybook": "10.1.10",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "npm:rolldown-vite@latest",
"vitest": "^4.0.15"
}
}