package.json 2.6 KB

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