package.json 2.7 KB

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