package.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. {
  2. "name": "sagoo-admin-ui",
  3. "version": "v2.1.1",
  4. "description": "vue3 vite next admin template",
  5. "author": "lyt_20201208",
  6. "license": "MIT",
  7. "scripts": {
  8. "dev": "npm run plugin:check && npm run writeEnv:dev && vite --force",
  9. "plugin:check": "ls ./public/plugin/topo && npm run plugin:has || npm run plugin:not",
  10. "plugin:has": "echo '\\033[31m 插件更新中,更新后自动运行 \\033[0m' && npm run plugin:pull",
  11. "plugin:not": "echo '\\033[31m 插件不存在,需要拉取 拉取后会自动运行 \\033[0m' && npm run plugin:clone",
  12. "plugin:clone": "git clone --depth 1 http://git.mydig.net/Sagoo-Cloud/sagoo-admin-ui-plugin.git ./public/plugin/",
  13. "plugin:pull": "cd ./public/plugin/ && git pull || npm run plugin:clone && echo '\\033[31m 插件更新完毕 \\033[0m'",
  14. "plugin:reload": "rm -rf ./public/plugin/ && npm run plugin:pull",
  15. "build": "npm run plugin:check && cross-env NODE_ENV=production node ./writeEnv.mjs && vite build && npm run getVersion",
  16. "build:dev": "npm run plugin:check && npm run writeEnv:dev && vite build --mode development && npm run getVersion",
  17. "build:golocal": "npm run plugin:check && cross-env NODE_ENV=golocal node ./writeEnv.mjs && vite build --mode golocal && npm run getVersion",
  18. "build:open": "npm run plugin:check && cross-env NODE_ENV=open node ./writeEnv.mjs && vite build --mode open && npm run getVersion",
  19. "writeEnv:dev": "cross-env NODE_ENV=development node ./writeEnv.mjs",
  20. "getVersion": "node ./getVersion.mjs",
  21. "updateVersion:small": "node ./updateVersion.mjs --patch",
  22. "updateVersion:mid": "node ./updateVersion.mjs --minor",
  23. "updateVersion:big": "node ./updateVersion.mjs --major"
  24. },
  25. "dependencies": {
  26. "@antv/g2plot": "2.4.20",
  27. "@element-plus/icons-vue": "2.0.9",
  28. "@form-create/component-wangeditor": "^2.6.2",
  29. "@form-create/designer": "3.2.11",
  30. "@form-create/element-ui": "^3.2.31",
  31. "@form-create/utils": "^3.2.31",
  32. "@guolao/vue-monaco-editor": "^1.5.5",
  33. "@logicflow/core": "^2.1.2",
  34. "@logicflow/extension": "^2.1.3",
  35. "@vueuse/core": "9.0.1",
  36. "axios": "0.26.0",
  37. "clipboard": "2.0.11",
  38. "codemirror": "5.65.16",
  39. "codemirror-editor-vue3": "2.5.8",
  40. "countup.js": "2.1.0",
  41. "cropperjs": "1.5.12",
  42. "dayjs": "1.11.8",
  43. "downloadjs": "1.4.7",
  44. "echarts": "5.5.0",
  45. "echarts-gl": "2.0.9",
  46. "echarts-wordcloud": "2.0.0",
  47. "element-plus": "2.2.28",
  48. "event-source-polyfill": "1.0.31",
  49. "html2canvas": "^1.4.1",
  50. "htmlparser2": "^10.0.0",
  51. "js-beautify": "^1.15.4",
  52. "js-cookie": "3.0.5",
  53. "jsplumb": "2.15.6",
  54. "jsrsasign": "10.8.6",
  55. "loadsh": "0.0.4",
  56. "markdown-it": "^14.1.0",
  57. "mitt": "3.0.0",
  58. "monaco-editor": "^0.52.2",
  59. "nprogress": "0.2.0",
  60. "pako": "1.0.11",
  61. "print-js": "1.6.0",
  62. "province-city-china": "8.5.7",
  63. "qrcodejs2-fixes": "0.0.2",
  64. "sass": "^1.93.0",
  65. "sass-loader": "^16.0.5",
  66. "screenfull": "6.0.1",
  67. "semver": "7.6.2",
  68. "sortablejs": "1.14.0",
  69. "splitpanes": "3.1.1",
  70. "sql-formatter": "^15.6.9",
  71. "uuid": "9.0.0",
  72. "vform3-builds": "3.0.8",
  73. "vue": "3.2.37",
  74. "vue-clipboard3": "1.0.1",
  75. "vue-data-ui": "^2.17.11",
  76. "vue-grid-layout": "3.0.0-beta1",
  77. "vue-i18n": "9.1.10",
  78. "vue-json-pretty": "^2.5.0",
  79. "vue-router": "4.0.13",
  80. "vue3-clipboard": "1.0.0",
  81. "vue3-cron": "1.1.8",
  82. "vue3-json-viewer": "2.2.2",
  83. "vuedraggable": "^2.24.3",
  84. "vuex": "4.0.2",
  85. "wangeditor": "4.7.12",
  86. "xlsx-with-styles": "0.17.2"
  87. },
  88. "devDependencies": {
  89. "@types/downloadjs": "^1.4.6",
  90. "@types/js-cookie": "3.0.6",
  91. "@types/markdown-it": "^14.1.2",
  92. "@types/node": "17.0.21",
  93. "@types/nprogress": "0.2.0",
  94. "@types/sortablejs": "1.10.7",
  95. "@typescript-eslint/eslint-plugin": "5.13.0",
  96. "@typescript-eslint/parser": "5.13.0",
  97. "@vitejs/plugin-vue": "3.1.0",
  98. "@vue/compiler-sfc": "3.2.45",
  99. "cross-env": "^7.0.3",
  100. "dotenv": "^16.6.1",
  101. "eslint": "8.10.0",
  102. "eslint-plugin-vue": "8.5.0",
  103. "prettier": "2.5.1",
  104. "typescript": "4.6.2",
  105. "vite": "3.2.3",
  106. "vite-plugin-compression": "0.5.1",
  107. "vue-eslint-parser": "8.3.0"
  108. },
  109. "browserslist": [
  110. "> 1%",
  111. "last 2 versions",
  112. "not dead"
  113. ],
  114. "bugs": {
  115. "url": "https://gitee.com/lyt-top/vue-next-admin/issues"
  116. },
  117. "engines": {
  118. "node": ">=12.0.0",
  119. "npm": ">= 6.0.0"
  120. },
  121. "keywords": [
  122. "vue",
  123. "vue3",
  124. "vuejs/vue-next",
  125. "element-ui",
  126. "element-plus",
  127. "vue-next-admin",
  128. "next-admin"
  129. ],
  130. "repository": {
  131. "type": "git",
  132. "url": "https://gitee.com/lyt-top/vue-next-admin.git"
  133. },
  134. "updateTime": "2024-05-20 09:22:34"
  135. }