package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. "@vueuse/core": "^9.13.0",
  28. "highlight.js": "^11.7.0",
  29. "html2canvas": "^1.4.1",
  30. "katex": "^0.16.4",
  31. "markdown-it": "^13.0.1",
  32. "naive-ui": "^2.34.3",
  33. "pinia": "^2.0.33",
  34. "qrcode.vue": "^3.3.4",
  35. "qs": "^6.11.1",
  36. "query-string": "^8.1.0",
  37. "resolve-url": "^0.2.1",
  38. "vue": "^3.2.47",
  39. "vue-i18n": "^9.2.2",
  40. "vue-router": "^4.1.6"
  41. },
  42. "devDependencies": {
  43. "@antfu/eslint-config": "^0.35.3",
  44. "@commitlint/cli": "^17.4.4",
  45. "@commitlint/config-conventional": "^17.4.4",
  46. "@iconify/vue": "^4.1.0",
  47. "@rushstack/eslint-patch": "^1.2.0",
  48. "@types/crypto-js": "^4.1.1",
  49. "@types/katex": "^0.16.0",
  50. "@types/markdown-it": "^12.2.3",
  51. "@types/markdown-it-link-attributes": "^3.0.1",
  52. "@types/node": "^18.14.6",
  53. "@types/qs": "^6.9.7",
  54. "@vitejs/plugin-vue": "^4.0.0",
  55. "@volar-plugins/prettier": "^1.2.0",
  56. "@vue/eslint-config-prettier": "^7.1.0",
  57. "@vue/eslint-config-typescript": "^11.0.2",
  58. "autoprefixer": "^10.4.13",
  59. "axios": "^1.3.4",
  60. "crypto-js": "^4.1.1",
  61. "eslint": "^8.35.0",
  62. "husky": "^8.0.3",
  63. "less": "^4.1.3",
  64. "lint-staged": "^13.1.2",
  65. "markdown-it-link-attributes": "^4.0.1",
  66. "npm-run-all": "^4.1.5",
  67. "postcss": "^8.4.21",
  68. "prettier": "^2.8.7",
  69. "rimraf": "^4.2.0",
  70. "tailwindcss": "^3.2.7",
  71. "typescript": "~4.9.5",
  72. "vite": "^4.2.0",
  73. "vite-plugin-pwa": "^0.14.4",
  74. "vue-tsc": "^1.2.0"
  75. },
  76. "lint-staged": {
  77. "*.{ts,tsx,vue}": [
  78. "pnpm lint:fix"
  79. ]
  80. }
  81. }