package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "coco",
  3. "private": true,
  4. "version": "0.3.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc && vite build",
  9. "build:web": "cross-env BUILD_TARGET=web tsc && cross-env BUILD_TARGET=web tsup --format esm",
  10. "publish:web": "cd out/search-chat && npm publish",
  11. "publish:web:beta": "cd dist/search-chat && npm publish --tag beta",
  12. "publish:web:alpha": "cd dist/search-chat && npm publish --tag alpha",
  13. "publish:web:rc": "cd dist/search-chat && npm publish --tag rc",
  14. "preview": "vite preview",
  15. "tauri": "tauri",
  16. "release": "release-it",
  17. "release-rc": "release-it --preRelease=rc --preReleaseBase=1",
  18. "release-beta": "release-it --preRelease=beta --preReleaseBase=1"
  19. },
  20. "dependencies": {
  21. "@ant-design/icons": "^6.0.0",
  22. "@headlessui/react": "^2.2.0",
  23. "@reactuses/core": "^6.0.1",
  24. "@tauri-apps/api": "^2.4.0",
  25. "@tauri-apps/plugin-autostart": "~2.2.0",
  26. "@tauri-apps/plugin-deep-link": "^2.2.0",
  27. "@tauri-apps/plugin-dialog": "^2.2.0",
  28. "@tauri-apps/plugin-global-shortcut": "~2.0.0",
  29. "@tauri-apps/plugin-http": "~2.0.2",
  30. "@tauri-apps/plugin-os": "^2.2.1",
  31. "@tauri-apps/plugin-process": "^2.2.0",
  32. "@tauri-apps/plugin-shell": "^2.2.0",
  33. "@tauri-apps/plugin-updater": "^2.6.1",
  34. "@tauri-apps/plugin-websocket": "~2.3.0",
  35. "@tauri-apps/plugin-window": "2.0.0-alpha.1",
  36. "@wavesurfer/react": "^1.0.9",
  37. "ahooks": "^3.8.4",
  38. "axios": "^1.8.4",
  39. "clsx": "^2.1.1",
  40. "dayjs": "^1.11.13",
  41. "dotenv": "^16.4.7",
  42. "filesize": "^10.1.6",
  43. "i18next": "^23.16.8",
  44. "i18next-browser-languagedetector": "^8.0.4",
  45. "lodash-es": "^4.17.21",
  46. "lucide-react": "^0.461.0",
  47. "mermaid": "^11.5.0",
  48. "nanoid": "^5.1.5",
  49. "react": "^18.3.1",
  50. "react-dom": "^18.3.1",
  51. "react-draggable": "^4.4.6",
  52. "react-hotkeys-hook": "^4.6.1",
  53. "react-i18next": "^15.4.1",
  54. "react-markdown": "^9.1.0",
  55. "react-router-dom": "^6.30.0",
  56. "react-window": "^1.8.11",
  57. "rehype-highlight": "^7.0.2",
  58. "rehype-katex": "^7.0.1",
  59. "remark-breaks": "^4.0.0",
  60. "remark-gfm": "^4.0.1",
  61. "remark-math": "^6.0.0",
  62. "tauri-plugin-fs-pro-api": "^2.4.0",
  63. "tauri-plugin-macos-permissions-api": "^2.2.0",
  64. "tauri-plugin-screenshots-api": "^2.1.0",
  65. "tauri-plugin-windows-version-api": "^2.0.0",
  66. "use-debounce": "^10.0.4",
  67. "uuid": "^11.1.0",
  68. "wavesurfer.js": "^7.9.3",
  69. "zustand": "^5.0.3"
  70. },
  71. "devDependencies": {
  72. "@tauri-apps/cli": "^2.4.0",
  73. "@types/dom-speech-recognition": "^0.0.4",
  74. "@types/lodash-es": "^4.17.12",
  75. "@types/markdown-it": "^14.1.2",
  76. "@types/node": "^22.13.11",
  77. "@types/react": "^18.3.19",
  78. "@types/react-dom": "^18.3.5",
  79. "@types/react-katex": "^3.0.4",
  80. "@types/react-window": "^1.8.8",
  81. "@vitejs/plugin-react": "^4.3.4",
  82. "autoprefixer": "^10.4.21",
  83. "cross-env": "^7.0.3",
  84. "immer": "^10.1.1",
  85. "postcss": "^8.5.3",
  86. "release-it": "^18.1.2",
  87. "tailwindcss": "^3.4.17",
  88. "tsup": "^8.4.0",
  89. "tsx": "^4.19.3",
  90. "typescript": "^5.8.2",
  91. "vite": "^5.4.14"
  92. }
  93. }