Files
coco-app/package.json

77 lines
2.3 KiB
JSON
Raw Normal View History

2024-10-13 17:41:16 +08:00
{
"name": "coco",
"private": true,
2025-03-04 12:51:41 +08:00
"version": "0.2.0-beta.1",
2024-10-13 17:41:16 +08:00
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"release": "release-it",
"release-rc": "release-it --preRelease=rc --preReleaseBase=1",
"release-beta": "release-it --preRelease=beta --preReleaseBase=1"
2024-10-13 17:41:16 +08:00
},
"dependencies": {
2024-10-28 17:34:48 +08:00
"@headlessui/react": "^2.1.10",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-autostart": "~2",
"@tauri-apps/plugin-deep-link": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
2024-12-13 14:49:47 +08:00
"@tauri-apps/plugin-global-shortcut": "~2.0.0",
"@tauri-apps/plugin-http": "~2.0.1",
"@tauri-apps/plugin-os": "^2.2.0",
2024-10-28 17:34:48 +08:00
"@tauri-apps/plugin-shell": ">=2.0.0",
"@tauri-apps/plugin-updater": "^2.3.0",
"@tauri-apps/plugin-websocket": "~2",
2024-11-27 19:41:54 +08:00
"@tauri-apps/plugin-window": "2.0.0-alpha.1",
"ahooks": "^3.8.4",
"axios": "^1.7.7",
2024-10-28 17:34:48 +08:00
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"filesize": "^10.1.6",
2024-10-28 17:34:48 +08:00
"i18next": "^23.16.2",
"i18next-browser-languagedetector": "^8.0.3",
"lodash-es": "^4.17.21",
"lucide-react": "^0.461.0",
2024-11-12 09:44:49 +08:00
"mermaid": "^11.4.0",
"nanoid": "^5.1.2",
2024-10-13 17:41:16 +08:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2024-10-28 17:34:48 +08:00
"react-hotkeys-hook": "^4.5.1",
"react-i18next": "^15.1.0",
"react-markdown": "^9.0.1",
2024-10-28 17:34:48 +08:00
"react-router-dom": "^6.27.0",
"react-window": "^1.8.11",
2024-11-12 09:44:49 +08:00
"rehype-highlight": "^7.0.1",
"rehype-katex": "^7.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tauri-plugin-fs-pro-api": "^2.3.1",
2024-11-12 09:44:49 +08:00
"use-debounce": "^10.0.4",
"uuid": "^11.0.3",
2024-10-28 17:34:48 +08:00
"zustand": "^5.0.0"
2024-10-13 17:41:16 +08:00
},
"devDependencies": {
"@tauri-apps/cli": "^2.2.7",
"@types/lodash-es": "^4.17.12",
2024-11-14 09:39:22 +08:00
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.8.4",
2024-10-13 17:41:16 +08:00
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
2024-10-28 17:34:48 +08:00
"@types/react-i18next": "^8.1.0",
2024-11-12 09:44:49 +08:00
"@types/react-katex": "^3.0.4",
"@types/react-window": "^1.8.8",
2024-10-13 17:41:16 +08:00
"@vitejs/plugin-react": "^4.2.1",
2024-10-28 17:34:48 +08:00
"autoprefixer": "^10.4.20",
"immer": "^10.1.1",
2024-10-28 17:34:48 +08:00
"postcss": "^8.4.47",
"release-it": "^18.1.2",
2024-10-28 17:34:48 +08:00
"tailwindcss": "^3.4.14",
"tsx": "^4.19.3",
2024-10-13 17:41:16 +08:00
"typescript": "^5.2.2",
2024-10-28 17:34:48 +08:00
"vite": "^5.3.1"
2024-10-13 17:41:16 +08:00
}
}