package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "chatgpt-web-midjourney-proxy",
  3. "version": "2.15.7",
  4. "private": false,
  5. "description": "ChatGPT Web Midjourney Proxy",
  6. "author": "Dooy <ydlhero@gmail.com>",
  7. "keywords": [
  8. "chatgpt-web",
  9. "chatgpt",
  10. "chatbot",
  11. "Midjourney",
  12. "Midjourney UI",
  13. "Midjourney Proxy",
  14. "gpts",
  15. "gpts ui",
  16. "vue"
  17. ],
  18. "scripts": {
  19. "dev": "vite",
  20. "build": "run-p build-only",
  21. "buildold": "run-p type-check build-only",
  22. "preview": "vite preview",
  23. "build-only": "vite build",
  24. "type-check": "vue-tsc --noEmit",
  25. "lint": "eslint .",
  26. "lint:fix": "eslint . --fix",
  27. "bootstrap": "pnpm install && pnpm run common:prepare",
  28. "common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
  29. "common:prepare": "husky install"
  30. },
  31. "dependencies": {
  32. "@traptitech/markdown-it-katex": "^3.6.0",
  33. "@vueuse/core": "^9.13.0",
  34. "eventsource-parser": "^1.1.1",
  35. "form-data": "^4.0.0",
  36. "gpt-tokenizer": "^2.1.2",
  37. "highlight.js": "^11.7.0",
  38. "html2canvas": "^1.4.1",
  39. "js-audio-recorder": "^1.0.7",
  40. "katex": "^0.16.4",
  41. "localforage": "^1.10.0",
  42. "markdown-it": "^13.0.1",
  43. "naive-ui": "^2.34.3",
  44. "pinia": "^2.0.33",
  45. "vue": "^3.2.47",
  46. "vue-i18n": "^9.2.2",
  47. "vue-router": "^4.1.6",
  48. "vue-waterfall-plugin-next": "^2.3.1"
  49. },
  50. "devDependencies": {
  51. "@antfu/eslint-config": "^0.35.3",
  52. "@commitlint/cli": "^17.4.4",
  53. "@commitlint/config-conventional": "^17.4.4",
  54. "@iconify/vue": "^4.1.0",
  55. "@types/crypto-js": "^4.1.1",
  56. "@types/katex": "^0.16.0",
  57. "@types/markdown-it": "^12.2.3",
  58. "@types/markdown-it-link-attributes": "^3.0.1",
  59. "@types/node": "^18.14.6",
  60. "@vitejs/plugin-vue": "^4.0.0",
  61. "autoprefixer": "^10.4.13",
  62. "axios": "^1.3.4",
  63. "crypto-js": "^4.1.1",
  64. "eslint": "^8.35.0",
  65. "http-proxy-middleware": "^2.0.6",
  66. "husky": "^8.0.3",
  67. "less": "^4.1.3",
  68. "lint-staged": "^13.1.2",
  69. "markdown-it-link-attributes": "^4.0.1",
  70. "npm-run-all": "^4.1.5",
  71. "postcss": "^8.4.21",
  72. "rimraf": "^4.2.0",
  73. "tailwindcss": "^3.3.6",
  74. "typescript": "~4.9.5",
  75. "vite": "^4.2.0",
  76. "vite-plugin-pwa": "^0.14.4",
  77. "vue-tsc": "^1.2.0"
  78. },
  79. "lint-staged": {
  80. "*.{ts,tsx,vue}": [
  81. "pnpm lint:fix"
  82. ]
  83. }
  84. }