package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "name": "vxe-table",
  3. "version": "2.11.0",
  4. "description": "一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟滚动、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、虚拟列表、弹窗、自定义模板、渲染器、贼灵活的配置项、扩展接口等...",
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "lint": "vue-cli-service lint",
  8. "build": "vue-cli-service build",
  9. "lib:modules": "gulp build",
  10. "lib:pack": "vue-cli-service build --target lib --name index --dest lib index.js",
  11. "lib": "npm run lib:pack && npm run lib:modules",
  12. "format": "eslint --fix examples/**/*.{js,ts,vue}"
  13. },
  14. "files": [
  15. "lib",
  16. "types",
  17. "packages",
  18. "styles",
  19. "helper",
  20. "scripts"
  21. ],
  22. "main": "lib/index.common.js",
  23. "unpkg": "lib/index.umd.js",
  24. "jsdelivr": "lib/index.umd.js",
  25. "style": "lib/style.css",
  26. "typings": "types/index.d.ts",
  27. "devDependencies": {
  28. "@typescript-eslint/eslint-plugin": "^2.33.0",
  29. "@typescript-eslint/parser": "^2.33.0",
  30. "@vue/cli-plugin-babel": "~4.4.0",
  31. "@vue/cli-plugin-eslint": "~4.4.0",
  32. "@vue/cli-plugin-router": "~4.4.0",
  33. "@vue/cli-plugin-typescript": "~4.4.0",
  34. "@vue/cli-plugin-vuex": "~4.4.0",
  35. "@vue/cli-service": "~4.4.0",
  36. "@vue/eslint-config-standard": "^5.1.2",
  37. "@vue/eslint-config-typescript": "^5.0.2",
  38. "core-js": "^3.6.5",
  39. "eslint": "^6.7.2",
  40. "eslint-plugin-import": "^2.20.2",
  41. "eslint-plugin-node": "^11.1.0",
  42. "eslint-plugin-promise": "^4.2.1",
  43. "eslint-plugin-standard": "^4.0.0",
  44. "eslint-plugin-vue": "^6.2.2",
  45. "gulp": "^4.0.2",
  46. "gulp-autoprefixer": "^6.1.0",
  47. "gulp-babel": "^8.0.0",
  48. "gulp-clean": "^0.4.0",
  49. "gulp-clean-css": "^4.3.0",
  50. "gulp-concat": "^2.6.1",
  51. "gulp-rename": "^1.4.0",
  52. "gulp-replace": "^1.0.0",
  53. "gulp-sass": "^4.1.0",
  54. "gulp-sourcemaps": "^2.6.5",
  55. "gulp-uglify": "^3.0.2",
  56. "node-sass": "^4.14.0",
  57. "sass-loader": "^8.0.2",
  58. "typescript": "~3.9.3",
  59. "vue": "^2.6.14",
  60. "vue-class-component": "^7.2.3",
  61. "vue-i18n": "^8.18.1",
  62. "vue-property-decorator": "^8.4.2",
  63. "vue-router": "^3.2.0",
  64. "vue-template-compiler": "^2.6.14",
  65. "vuex": "^3.4.0",
  66. "xe-utils": "^3.4.0"
  67. },
  68. "peerDependencies": {
  69. "vue": "^2.6.0"
  70. },
  71. "vetur": {
  72. "tags": "helper/vetur/tags.json",
  73. "attributes": "helper/vetur/attributes.json"
  74. },
  75. "postcss": {
  76. "plugins": {
  77. "autoprefixer": {}
  78. }
  79. },
  80. "repository": {
  81. "type": "git",
  82. "url": "git+https://github.com/x-extends/vxe-table.git"
  83. },
  84. "keywords": [
  85. "vxe-table",
  86. "vxe-grid",
  87. "vue table",
  88. "vue grid"
  89. ],
  90. "author": {
  91. "name": "Xu Liangzhan",
  92. "email": "xu_liangzhan@163.com"
  93. },
  94. "license": "MIT",
  95. "bugs": {
  96. "url": "https://github.com/x-extends/vxe-table/issues"
  97. },
  98. "homepage": "https://github.com/x-extends/vxe-table#readme",
  99. "browserslist": [
  100. "> 1%",
  101. "last 2 versions"
  102. ]
  103. }