-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.91 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.91 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "ido",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"prepare": "husky",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\" --ignore-path .prettierignore",
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\" --ignore-path .prettierignore",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "pnpm tauri dev",
"tauri:dev:win": "powershell -ExecutionPolicy Bypass -File scripts/windows/tauri-dev-win.ps1",
"tauri:build": "pnpm tauri build",
"tauri:dev:gen-ts": "bash scripts/unix/tauri-dev-gen-ts.sh",
"tauri:dev:gen-ts:win": "powershell -ExecutionPolicy Bypass -File scripts/windows/tauri-dev-gen-ts.ps1",
"tauri:build:signed": "pnpm tauri build && sh scripts/unix/sign-macos.sh",
"sign-macos": "sh scripts/unix/sign-macos.sh",
"check-i18n": "tsx scripts/cross-platform/check-i18n-keys.ts",
"bundle": "bash scripts/unix/build-bundle.sh",
"bundle:win": "powershell -ExecutionPolicy Bypass -File scripts/windows/build-bundle.ps1",
"clean": "bash scripts/unix/clean-build.sh",
"setup": "bash scripts/unix/setup-env.sh",
"setup:win": "powershell -ExecutionPolicy Bypass -File scripts/windows/setup-env.ps1",
"setup-frontend": "pnpm install",
"setup-backend": "uv sync",
"setup-all": "pnpm setup-frontend && pnpm setup-backend && pnpm check-i18n",
"release:pr": "bash scripts/release-pr.sh",
"release:pr:minor": "bash scripts/release-pr.sh --minor",
"release:pr:major": "bash scripts/release-pr.sh --major",
"release:pr:patch": "bash scripts/release-pr.sh --patch",
"release:pr:dry-run": "bash scripts/release-pr.sh --dry-run",
"verify-tags": "bash scripts/verify-tags.sh"
},
"dependencies": {
"@alova/shared": "^1.3.1",
"@hookform/resolvers": "^5.2.2",
"@icons-pack/react-simple-icons": "^13.8.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@tailwindcss/vite": "^4.1.17",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-http": "~2.4.4",
"@tauri-apps/plugin-notification": "~2.3.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-process": "~2.3.1",
"@tauri-apps/plugin-sql": "^2.3.1",
"ai": "^5.0.90",
"alova": "^3.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"harden-react-markdown": "^1.1.5",
"highlight.js": "^11.11.1",
"i18next": "^25.6.1",
"input-otp": "^1.4.2",
"jwt-decode": "^4.0.0",
"katex": "^0.16.25",
"lucide-react": "^0.503.0",
"mitt": "^3.0.1",
"next-themes": "^0.4.6",
"pixi-live2d-display": "^0.4.0",
"pixi.js": "6.5.6",
"react": "^19.2.0",
"react-datepicker": "^8.9.0",
"react-day-picker": "9.11.1",
"react-dom": "^19.2.0",
"react-hook-form": "^7.66.0",
"react-i18next": "^16.2.4",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^2.1.9",
"react-router": "^7.9.5",
"react-syntax-highlighter": "^16.1.0",
"recharts": "2.15.4",
"refractor": "^5.0.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"shiki": "^3.15.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"tauri-plugin-pytauri-api": "^0.8.0",
"use-stick-to-bottom": "^1.1.1",
"vaul": "^1.1.2",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/cli": "^2.9.4",
"@types/node": "^22.19.0",
"@types/react": "^19.2.2",
"@types/react-datepicker": "^7.0.0",
"@types/react-dom": "^19.2.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/recharts": "^2.0.1",
"@vitejs/plugin-react": "^5.1.0",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.4",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"standard-version": "^9.5.0",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "~5.6.3",
"unplugin-auto-import": "^19.3.0",
"vite": "npm:rolldown-vite@^7.2.2"
}
}