package.json 2.3 KB

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