package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. "@traptitech/markdown-it-katex": "^3.6.0",
  29. "@vueuse/core": "^9.13.0",
  30. "codemirror": "^6.0.1",
  31. "date-fns": "^2.30.0",
  32. "docxtemplater": "^3.46.2",
  33. "echarts": "^5.4.3",
  34. "highlight.js": "^11.7.0",
  35. "html2canvas": "^1.4.1",
  36. "js-beautify": "^1.14.11",
  37. "jspdf": "^2.5.1",
  38. "katex": "^0.16.4",
  39. "markdown-it": "^13.0.1",
  40. "markmap-common": "^0.15.6",
  41. "markmap-lib": "^0.15.7",
  42. "markmap-view": "^0.15.6",
  43. "naive-ui": "^2.38.2",
  44. "pinia": "^2.0.33",
  45. "pizzip": "^3.1.6",
  46. "typed.js": "^2.1.0",
  47. "uuid": "^9.0.1",
  48. "vue": "^3.2.47",
  49. "vue-codemirror": "^6.1.1",
  50. "vue-demi": "^0.14.6",
  51. "vue-echarts": "^6.6.4",
  52. "vue-i18n": "^9.2.2",
  53. "vue-router": "^4.1.6"
  54. },
  55. "devDependencies": {
  56. "@antfu/eslint-config": "^0.35.3",
  57. "@commitlint/cli": "^17.4.4",
  58. "@commitlint/config-conventional": "^17.4.4",
  59. "@iconify/vue": "^4.1.0",
  60. "@types/crypto-js": "^4.1.1",
  61. "@types/js-beautify": "^1.14.3",
  62. "@types/katex": "^0.16.0",
  63. "@types/markdown-it": "^12.2.3",
  64. "@types/markdown-it-link-attributes": "^3.0.1",
  65. "@types/node": "^18.14.6",
  66. "@types/uuid": "^9.0.7",
  67. "@vitejs/plugin-vue": "^4.0.0",
  68. "autoprefixer": "^10.4.13",
  69. "axios": "^1.3.4",
  70. "crypto-js": "^4.1.1",
  71. "eslint": "^8.46.0",
  72. "eslint-config-prettier": "^8.10.0",
  73. "eslint-define-config": "1.12.0",
  74. "eslint-plugin-jest": "^27.2.3",
  75. "eslint-plugin-prettier": "^4.2.1",
  76. "eslint-plugin-vue": "^9.17.0",
  77. "husky": "^8.0.3",
  78. "less": "^4.1.3",
  79. "lint-staged": "^13.1.2",
  80. "markdown-it-link-attributes": "^4.0.1",
  81. "npm-run-all": "^4.1.5",
  82. "postcss": "^8.4.21",
  83. "prettier": "^2.8.8",
  84. "rimraf": "^4.2.0",
  85. "stylelint-config-prettier": "^9.0.5",
  86. "tailwindcss": "^3.2.7",
  87. "typescript": "~4.9.5",
  88. "vite": "^4.2.0",
  89. "vite-plugin-pwa": "^0.14.4",
  90. "vue-tsc": "^1.2.0"
  91. },
  92. "lint-staged": {
  93. "*.{ts,tsx,vue}": [
  94. "pnpm lint:fix"
  95. ]
  96. }
  97. }