package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "chatgpt-vue3-light-mvp",
  3. "version": "0.0.1",
  4. "author": "Wisdom <pdsu.wwz@foxmail.com>",
  5. "license": "MIT",
  6. "type": "module",
  7. "scripts": {
  8. "dev": "vite --host",
  9. "build": "vite build",
  10. "build:gh-pages": "cross-env VITE_ROUTER_MODE=hash pnpm build",
  11. "preview": "vite preview --host",
  12. "lint": "eslint .",
  13. "lint:fix": "eslint --fix .",
  14. "stylelint": "stylelint .scss, .vue ./src",
  15. "stylelint:fix": "stylelint --fix .scss, .vue ./src"
  16. },
  17. "engines": {
  18. "node": ">= 18.12.x",
  19. "pnpm": ">= 9.x"
  20. },
  21. "homepage": "https://github.com/pdsuwwz/chatgpt-vue3-light-mvp",
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/pdsuwwz/chatgpt-vue3-light-mvp"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/pdsuwwz/chatgpt-vue3-light-mvp/issues"
  28. },
  29. "dependencies": {
  30. "@nzoth/toolkit": "^0.0.4",
  31. "@vueuse/core": "^13.2.0",
  32. "axios": "1.9.0",
  33. "dompurify": "^3.2.5",
  34. "js-cookie": "^3.0.5",
  35. "lodash-es": "^4.17.21",
  36. "marked": "^15.0.11",
  37. "naive-ui": "^2.41.0",
  38. "nprogress": "^0.2.0",
  39. "pinia": "^3.0.2",
  40. "uuid": "^11.1.0",
  41. "vfile": "^6.0.3",
  42. "vue": "^3.5.14",
  43. "vue-router": "^4.5.1"
  44. },
  45. "devDependencies": {
  46. "@babel/core": "^7.27.1",
  47. "@babel/preset-env": "^7.27.2",
  48. "@eslint/js": "^9.27.0",
  49. "@iconify/json": "^2.2.339",
  50. "@iconify/vue": "^5.0.0",
  51. "@stylistic/eslint-plugin": "^4.2.0",
  52. "@stylistic/stylelint-plugin": "^3.1.2",
  53. "@types/js-cookie": "^3.0.6",
  54. "@types/lodash-es": "^4.17.12",
  55. "@types/markdown-it": "^14.1.2",
  56. "@types/node": "^22.15.19",
  57. "@types/nprogress": "^0.2.3",
  58. "@typescript-eslint/eslint-plugin": "^8.32.1",
  59. "@typescript-eslint/parser": "^8.32.1",
  60. "@unocss/preset-icons": "66.1.2",
  61. "@unocss/preset-rem-to-px": "66.1.2",
  62. "@vitejs/plugin-vue": "^5.2.4",
  63. "@vitejs/plugin-vue-jsx": "^4.1.2",
  64. "@vscode/markdown-it-katex": "~1.1.1",
  65. "@vue/babel-plugin-jsx": "^1.4.0",
  66. "@vue/compiler-sfc": "^3.5.14",
  67. "cross-env": "^7.0.3",
  68. "crypto-js": "^4.2.0",
  69. "eslint": "^9.27.0",
  70. "eslint-plugin-html": "8.1.2",
  71. "eslint-plugin-import": "^2.31.0",
  72. "eslint-plugin-vue": "^10.1.0",
  73. "globals": "^16.1.0",
  74. "highlight.js": "^11.11.1",
  75. "identity-obj-proxy": "^3.0.0",
  76. "katex": "^0.16.22",
  77. "markdown-it": "^14.1.0",
  78. "markdown-it-highlightjs": "^4.2.0",
  79. "postcss": "^8.5.3",
  80. "postcss-html": "^1.8.0",
  81. "postcss-scss": "^4.0.9",
  82. "prismjs": "^1.30.0",
  83. "rollup": "^4.41.0",
  84. "sass": "1.89.0",
  85. "stylelint": "^16.19.1",
  86. "stylelint-config-recommended-scss": "15.0.1",
  87. "stylelint-config-recommended-vue": "^1.6.0",
  88. "stylelint-config-standard": "^38.0.0",
  89. "stylelint-config-standard-scss": "15.0.1",
  90. "typescript": "^5.8.3",
  91. "ua-parser-js": "^2.0.3",
  92. "unocss": "66.1.2",
  93. "unplugin-auto-import": "^19.2.0",
  94. "unplugin-icons": "^22.1.0",
  95. "unplugin-vue-components": "^28.5.0",
  96. "vite": "^6.3.5",
  97. "vite-raw-plugin": "^1.0.2",
  98. "vue-eslint-parser": "^10.1.3"
  99. }
  100. }