package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@smallwei/avue",
  3. "version": "3.4.8",
  4. "description": "A Magic Configurable Web Framework",
  5. "main": "lib/avue.min.js",
  6. "unpkg": "lib/avue.min.js",
  7. "jsdelivr": "lib/avue.min.js",
  8. "scripts": {
  9. "bootstrap": "yarn --registry https://registry.npm.taobao.org || npm install --registry https://registry.npm.taobao.org && yarn gen:version",
  10. "dev": "yarn gen:version && cross-env TARGET=dev gulp watch",
  11. "gen:version": "node build/version.js",
  12. "build": "yarn gen:version && cross-env TARGET=prod UINAME=element-ui gulp build",
  13. "all": "yarn build && yarn dev"
  14. },
  15. "keywords": [
  16. "vue",
  17. "element-plus",
  18. "avue"
  19. ],
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://gitee.com/smallweigit/avue.git"
  23. },
  24. "author": "smallwei",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://gitee.com/smallweigit/avue/issues"
  28. },
  29. "homepage": "https://gitee.com/smallweigit/avue/blob/master/README.md",
  30. "devDependencies": {
  31. "@babel/cli": "^7.12.1",
  32. "@babel/core": "^7.11.4",
  33. "@babel/plugin-transform-runtime": "^7.12.1",
  34. "@babel/preset-env": "^7.11.5",
  35. "@vue/compiler-sfc": "^3.0.9",
  36. "@vue/component-compiler-utils": "^3.2.0",
  37. "axios": "^0.21.1",
  38. "babel-loader": "^8.2.2",
  39. "cross-env": "^3.1.3",
  40. "css-loader": "^5.2.0",
  41. "element-plus": "^2.3.7",
  42. "eslint": "4.14.0",
  43. "eslint-config-elemefe": "0.1.1",
  44. "eslint-loader": "^1.9.0",
  45. "eslint-plugin-html": "^4.0.1",
  46. "eslint-plugin-json": "^1.2.0",
  47. "gulp": "^4.0.2",
  48. "gulp-autoprefixer": "^8.0.0",
  49. "gulp-cssmin": "^0.2.0",
  50. "gulp-postcss": "^9.0.1",
  51. "gulp-sass": "^5.1.0",
  52. "progress-bar-webpack-plugin": "^1.11.0",
  53. "sass": "^1.52.1",
  54. "vue": "^3.3.4",
  55. "vue-loader": "^16.1.2",
  56. "webpack": "^4.27.0",
  57. "webpack-bundle-analyzer": "^3.0.3",
  58. "webpack-merge": "^4.1.4"
  59. },
  60. "peerDependencies": {
  61. "element-plus": ">=2.2.0",
  62. "vue": ">=3.2.0"
  63. },
  64. "dependencies": {
  65. "@element-plus/icons-vue": "^2.0.6",
  66. "countup.js": "^1.9.3",
  67. "dayjs": "^1.10.4"
  68. },
  69. "files": [
  70. "lib",
  71. "README.md",
  72. "LICENSE"
  73. ]
  74. }