package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 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. "@traptitech/markdown-it-katex": "^3.6.0",
  26. "@vueuse/core": "^9.13.0",
  27. "date-fns": "^2.30.0",
  28. "highlight.js": "^11.7.0",
  29. "html2canvas": "^1.4.1",
  30. "js-beautify": "^1.14.11",
  31. "jspdf": "^2.5.1",
  32. "katex": "^0.16.4",
  33. "markdown-it": "^13.0.1",
  34. "markmap-common": "^0.15.6",
  35. "markmap-lib": "^0.15.7",
  36. "markmap-view": "^0.15.6",
  37. "naive-ui": "^2.38.2",
  38. "pinia": "^2.0.33",
  39. "pizzip": "^3.1.6",
  40. "typed.js": "^2.1.0",
  41. "uuid": "^9.0.1",
  42. "vue": "^3.2.47",
  43. "vue-demi": "^0.14.6",
  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. "@types/crypto-js": "^4.1.1",
  53. "@types/js-beautify": "^1.14.3",
  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/uuid": "^9.0.7",
  59. "@vitejs/plugin-vue": "^4.0.0",
  60. "autoprefixer": "^10.4.13",
  61. "axios": "^1.3.4",
  62. "crypto-js": "^4.1.1",
  63. "eslint": "^8.46.0",
  64. "eslint-config-prettier": "^8.10.0",
  65. "eslint-define-config": "1.12.0",
  66. "eslint-plugin-jest": "^27.2.3",
  67. "eslint-plugin-prettier": "^4.2.1",
  68. "eslint-plugin-vue": "^9.17.0",
  69. "husky": "^8.0.3",
  70. "less": "^4.1.3",
  71. "lint-staged": "^13.1.2",
  72. "markdown-it-link-attributes": "^4.0.1",
  73. "npm-run-all": "^4.1.5",
  74. "postcss": "^8.4.21",
  75. "prettier": "^2.8.8",
  76. "rimraf": "^4.2.0",
  77. "stylelint-config-prettier": "^9.0.5",
  78. "tailwindcss": "^3.2.7",
  79. "typescript": "~4.9.5",
  80. "vite": "^4.2.0",
  81. "vite-plugin-pwa": "^0.14.4",
  82. "vue-tsc": "^1.2.0"
  83. },
  84. "lint-staged": {
  85. "*.{ts,tsx,vue}": [
  86. "pnpm lint:fix"
  87. ]
  88. }
  89. }