package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@persagy-vue/doc",
  3. "version": "1.1.35",
  4. "description": "persagy vue vuepress 文档扩展组件",
  5. "private": false,
  6. "author": "郝洁 <haojie@persagy.com.cn>",
  7. "license": "persagy",
  8. "keywords": [
  9. "persagy",
  10. "vue",
  11. "vuepress",
  12. "doc",
  13. "git",
  14. "database"
  15. ],
  16. "main": "lib/index.js",
  17. "scripts": {
  18. "build": "cross-env NODE_ENV=production webpack --mode production --profile --progress --config webpack.components.config.js",
  19. "publish": "npm publish",
  20. "lint": "vue-cli-service lint"
  21. },
  22. "files": [
  23. "lib"
  24. ],
  25. "publishConfig": {
  26. "registry": "http://dev.dp.sagacloud.cn:8082/repository/npm-hosted/"
  27. },
  28. "dependencies": {
  29. "axios": "^0.20.0",
  30. "core-js": "^3.6.5",
  31. "prismjs": "^1.21.0",
  32. "vue": "^2.6.11"
  33. },
  34. "devDependencies": {
  35. "@vue/cli-plugin-babel": "~4.5.0",
  36. "@vue/cli-plugin-eslint": "~4.5.0",
  37. "@vue/cli-service": "~4.5.0",
  38. "babel-eslint": "^10.1.0",
  39. "cross-env": "^7.0.2",
  40. "eslint": "^6.7.2",
  41. "eslint-plugin-vue": "^6.2.2",
  42. "vue-loader": "^15.9.3",
  43. "vue-template-compiler": "^2.6.11",
  44. "webpack-cli": "^3.3.12"
  45. },
  46. "eslintConfig": {
  47. "root": true,
  48. "env": {
  49. "node": true
  50. },
  51. "extends": [
  52. "plugin:vue/essential",
  53. "eslint:recommended"
  54. ],
  55. "parserOptions": {
  56. "parser": "babel-eslint"
  57. },
  58. "rules": {}
  59. },
  60. "browserslist": [
  61. "> 1%",
  62. "last 2 versions",
  63. "not dead"
  64. ]
  65. }