package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. "build:org": "run-p type-check 'build-only --mode org'",
  17. "preview": "vite preview",
  18. "build-only": "vite build",
  19. "type-check": "vue-tsc --noEmit",
  20. "lint": "eslint .",
  21. "lint:fix": "eslint . --fix",
  22. "bootstrap": "pnpm install && pnpm run common:prepare",
  23. "common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
  24. "common:prepare": "husky install"
  25. },
  26. "dependencies": {
  27. "@traptitech/markdown-it-katex": "^3.6.0",
  28. "@vicons/tabler": "^0.12.0",
  29. "@vueuse/core": "^9.13.0",
  30. "date-fns": "^2.29.3",
  31. "eruda": "^3.0.0",
  32. "eruda-code": "^2.1.0",
  33. "highlight.js": "^11.7.0",
  34. "html2canvas": "^1.4.1",
  35. "katex": "^0.16.4",
  36. "markdown-it": "^13.0.1",
  37. "mitt": "^3.0.0",
  38. "naive-ui": "^2.34.3",
  39. "pinia": "^2.0.33",
  40. "qrcode.vue": "^3.3.4",
  41. "qs": "^6.11.1",
  42. "query-string": "^8.1.0",
  43. "resolve-url": "^0.2.1",
  44. "vite-plugin-imagemin": "^0.6.1",
  45. "vue": "^3.2.47",
  46. "vue-i18n": "^9.2.2",
  47. "vue-router": "^4.1.6"
  48. },
  49. "devDependencies": {
  50. "@antfu/eslint-config": "^0.35.3",
  51. "@commitlint/cli": "^17.4.4",
  52. "@commitlint/config-conventional": "^17.4.4",
  53. "@iconify/vue": "^4.1.0",
  54. "@rushstack/eslint-patch": "^1.2.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. "@types/qs": "^6.9.7",
  61. "@vitejs/plugin-vue": "^4.0.0",
  62. "@volar-plugins/prettier": "^1.2.0",
  63. "@vue/eslint-config-prettier": "^7.1.0",
  64. "@vue/eslint-config-typescript": "^11.0.2",
  65. "autoprefixer": "^10.4.13",
  66. "axios": "^1.3.4",
  67. "crypto-js": "^4.1.1",
  68. "eslint": "^8.35.0",
  69. "husky": "^8.0.3",
  70. "less": "^4.1.3",
  71. "lint-staged": "^13.1.2",
  72. "markdown-it-link-attributes": "^4.0.1",
  73. "npm-run-all": "^4.1.5",
  74. "postcss": "^8.4.21",
  75. "prettier": "^2.8.7",
  76. "rimraf": "^4.2.0",
  77. "tailwindcss": "^3.2.7",
  78. "typescript": "~4.9.5",
  79. "vite": "^4.2.0",
  80. "vite-plugin-pwa": "^0.14.4",
  81. "vue-tsc": "^1.2.0"
  82. },
  83. "lint-staged": {
  84. "*.{ts,tsx,vue}": [
  85. "pnpm lint:fix"
  86. ]
  87. }
  88. }