package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "chatgpt-web",
  3. "version": "2.10.9",
  4. "private": false,
  5. "description": "ChatGPT Web",
  6. "author": "ChenZhaoYu <chenzhaoyu1994@gmail.com>",
  7. "keywords": [
  8. "chatgpt-web",
  9. "chatgpt",
  10. "chatbot",
  11. "vue"
  12. ],
  13. "scripts": {
  14. "dev": "vite",
  15. "build": "run-p type-check build-only",
  16. "preview": "vite preview",
  17. "build-only": "vite build",
  18. "type-check": "vue-tsc --noEmit",
  19. "lint": "eslint .",
  20. "lint:fix": "eslint . --fix",
  21. "bootstrap": "pnpm install && pnpm run common:prepare",
  22. "common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
  23. "common:prepare": "husky install"
  24. },
  25. "dependencies": {
  26. "@traptitech/markdown-it-katex": "^3.6.0",
  27. "@vicons/fa": "^0.12.0",
  28. "@vicons/tabler": "^0.12.0",
  29. "@vueuse/core": "^9.13.0",
  30. "dat.gui": "^0.7.9",
  31. "date-fns": "^2.29.3",
  32. "eruda": "^3.0.0",
  33. "eruda-code": "^2.1.0",
  34. "highlight.js": "^11.7.0",
  35. "html2canvas": "^1.4.1",
  36. "katex": "^0.16.4",
  37. "markdown-it": "^13.0.1",
  38. "mitt": "^3.0.0",
  39. "naive-ui": "^2.34.3",
  40. "phaser": "^3.60.0",
  41. "phavuer": "^0.12.1",
  42. "pinia": "^2.0.33",
  43. "qrcode.vue": "^3.3.4",
  44. "qs": "^6.11.1",
  45. "query-string": "^8.1.0",
  46. "resolve-url": "^0.2.1",
  47. "vite-plugin-imagemin": "^0.6.1",
  48. "vue": "^3.2.47",
  49. "vue-i18n": "^9.2.2",
  50. "vue-router": "^4.1.6",
  51. "vue3-lottie": "^2.7.0"
  52. },
  53. "devDependencies": {
  54. "@antfu/eslint-config": "^0.35.3",
  55. "@commitlint/cli": "^17.4.4",
  56. "@commitlint/config-conventional": "^17.4.4",
  57. "@iconify/vue": "^4.1.0",
  58. "@rushstack/eslint-patch": "^1.2.0",
  59. "@types/crypto-js": "^4.1.1",
  60. "@types/katex": "^0.16.0",
  61. "@types/markdown-it": "^12.2.3",
  62. "@types/markdown-it-link-attributes": "^3.0.1",
  63. "@types/node": "^18.14.6",
  64. "@types/qs": "^6.9.7",
  65. "@vitejs/plugin-vue": "^4.0.0",
  66. "@volar-plugins/prettier": "^1.2.0",
  67. "@vue/eslint-config-prettier": "^7.1.0",
  68. "@vue/eslint-config-typescript": "^11.0.2",
  69. "autoprefixer": "^10.4.13",
  70. "axios": "^1.3.4",
  71. "crypto-js": "^4.1.1",
  72. "eslint": "^8.35.0",
  73. "husky": "^8.0.3",
  74. "less": "^4.1.3",
  75. "lint-staged": "^13.1.2",
  76. "markdown-it-link-attributes": "^4.0.1",
  77. "npm-run-all": "^4.1.5",
  78. "postcss": "^8.4.21",
  79. "prettier": "^2.8.7",
  80. "rimraf": "^4.2.0",
  81. "tailwindcss": "^3.2.7",
  82. "typescript": "~4.9.5",
  83. "vite": "^4.2.0",
  84. "vite-plugin-pwa": "^0.14.4",
  85. "vue-tsc": "^1.2.0"
  86. },
  87. "lint-staged": {
  88. "*.{ts,tsx,vue}": [
  89. "pnpm lint:fix"
  90. ]
  91. }
  92. }