package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "lcngchat",
  3. "version": "2.11.1",
  4. "private": false,
  5. "description": "LangChat",
  6. "author": "tycoding <langchat@outlook.com>",
  7. "keywords": [
  8. "chatgpt",
  9. "chatbot",
  10. "vue"
  11. ],
  12. "scripts": {
  13. "dev": "vite",
  14. "build": "run-p type-check build-only",
  15. "preview": "vite preview",
  16. "build-only": "vite build",
  17. "type-check": "vue-tsc --noEmit",
  18. "lint": "eslint .",
  19. "lint:fix": "eslint . --fix",
  20. "bootstrap": "pnpm install && pnpm run common:prepare",
  21. "common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
  22. "common:prepare": "husky install"
  23. },
  24. "dependencies": {
  25. "@codemirror/lang-javascript": "^6.2.1",
  26. "@codemirror/lang-json": "^6.0.1",
  27. "@codemirror/theme-one-dark": "^6.1.2",
  28. "@flyfish-group/file-viewer3": "^1.0.3",
  29. "@traptitech/markdown-it-katex": "^3.6.0",
  30. "@vueuse/core": "^9.13.0",
  31. "codemirror": "^6.0.1",
  32. "date-fns": "^2.30.0",
  33. "docxtemplater": "^3.46.2",
  34. "echarts": "^5.4.3",
  35. "highlight.js": "^11.7.0",
  36. "html2canvas": "^1.4.1",
  37. "js-beautify": "^1.14.11",
  38. "jspdf": "^2.5.1",
  39. "katex": "^0.16.4",
  40. "markdown-it": "^13.0.1",
  41. "markmap-common": "^0.15.6",
  42. "markmap-lib": "^0.15.7",
  43. "markmap-view": "^0.15.6",
  44. "naive-ui": "^2.34.3",
  45. "pinia": "^2.0.33",
  46. "pizzip": "^3.1.6",
  47. "pptxgenjs": "^3.12.0",
  48. "typed.js": "^2.1.0",
  49. "uuid": "^9.0.1",
  50. "vue": "^3.2.47",
  51. "vue-codemirror": "^6.1.1",
  52. "vue-demi": "^0.14.6",
  53. "vue-echarts": "^6.6.4",
  54. "vue-i18n": "^9.2.2",
  55. "vue-mermaid-render": "^0.1.3",
  56. "vue-router": "^4.1.6"
  57. },
  58. "devDependencies": {
  59. "@antfu/eslint-config": "^0.35.3",
  60. "@commitlint/cli": "^17.4.4",
  61. "@commitlint/config-conventional": "^17.4.4",
  62. "@iconify/vue": "^4.1.0",
  63. "@types/crypto-js": "^4.1.1",
  64. "@types/js-beautify": "^1.14.3",
  65. "@types/katex": "^0.16.0",
  66. "@types/markdown-it": "^12.2.3",
  67. "@types/markdown-it-link-attributes": "^3.0.1",
  68. "@types/node": "^18.14.6",
  69. "@types/uuid": "^9.0.7",
  70. "@vitejs/plugin-vue": "^4.0.0",
  71. "autoprefixer": "^10.4.13",
  72. "axios": "^1.3.4",
  73. "crypto-js": "^4.1.1",
  74. "eslint": "^8.46.0",
  75. "eslint-config-prettier": "^8.10.0",
  76. "eslint-define-config": "1.12.0",
  77. "eslint-plugin-jest": "^27.2.3",
  78. "eslint-plugin-prettier": "^4.2.1",
  79. "eslint-plugin-vue": "^9.17.0",
  80. "husky": "^8.0.3",
  81. "less": "^4.1.3",
  82. "lint-staged": "^13.1.2",
  83. "markdown-it-link-attributes": "^4.0.1",
  84. "npm-run-all": "^4.1.5",
  85. "postcss": "^8.4.21",
  86. "prettier": "^2.8.8",
  87. "rimraf": "^4.2.0",
  88. "stylelint-config-prettier": "^9.0.5",
  89. "tailwindcss": "^3.2.7",
  90. "typescript": "~4.9.5",
  91. "vite": "^4.2.0",
  92. "vite-plugin-pwa": "^0.14.4",
  93. "vue-tsc": "^1.2.0"
  94. },
  95. "lint-staged": {
  96. "*.{ts,tsx,vue}": [
  97. "pnpm lint:fix"
  98. ]
  99. }
  100. }