package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "huikaifa",
  3. "version": "0.0.1",
  4. "displayName": "开发提效平台",
  5. "description": "绘开发-开发提效平台",
  6. "private": false,
  7. "author": "wjc",
  8. "engines": {
  9. "vscode": "^1.0.0"
  10. },
  11. "categories": [
  12. "Other"
  13. ],
  14. "activationEvents": [
  15. "*"
  16. ],
  17. "main": "./extension.js",
  18. "contributes": {
  19. "configuration": {
  20. "type": "object",
  21. "title": "绘开发提效平台",
  22. "properties": {
  23. "openHuiKaiFa.src": {
  24. "type": "string",
  25. "default": "http://192.168.0.243:3211/dashboard",
  26. "description": "设计器远程链接"
  27. }
  28. }
  29. },
  30. "commands": [
  31. {
  32. "command": "extension.openHuiKaiFa",
  33. "title": "打开绘开发"
  34. }
  35. ],
  36. "menus": {
  37. "explorer/context": [
  38. {
  39. "command": "extension.openHuiKaiFa",
  40. "group": "navigation"
  41. }
  42. ]
  43. }
  44. },
  45. "scripts": {
  46. "build": "vue-cli-service build",
  47. "build:report": "vue-cli-service build --report",
  48. "build:render": "vue-cli-service build --target lib --name form-gen-render --dest ./src/components/render/lib/ ./src/components/render/render.js",
  49. "build:parser": "vue-cli-service build --target lib --name form-gen-parser --dest ./src/components/parser/lib/ ./src/components/parser/index.js",
  50. "build:tinymce": "vue-cli-service build --target lib --name form-gen-tinymce --dest ./src/components/tinymce/lib/ ./src/components/tinymce/index.js",
  51. "report": "vue-cli-service build --report",
  52. "lint": "vue-cli-service lint",
  53. "dev": "vue-cli-service serve"
  54. },
  55. "dependencies": {
  56. "@babel/parser": "^7.7.4",
  57. "axios": "^0.19.2",
  58. "clipboard": "^2.0.4",
  59. "core-js": "^3.6.5",
  60. "element-ui": "^2.15.1",
  61. "file-saver": "^2.0.5",
  62. "throttle-debounce": "^2.1.0",
  63. "vue": "^2.6.11",
  64. "vue-router": "^3.5.1",
  65. "vuedraggable": "^2.23.2",
  66. "vuex": "^3.6.2",
  67. "open": "^7.0.0",
  68. "wisdom-ui": "1.0.2-beta.14"
  69. },
  70. "devDependencies": {
  71. "@vue/cli-plugin-babel": "~4.4.0",
  72. "@vue/cli-plugin-eslint": "~4.4.0",
  73. "@vue/cli-service": "~4.4.0",
  74. "babel-eslint": "^10.1.0",
  75. "eslint": "^6.8.0",
  76. "eslint-config-airbnb-base": "^14.0.0",
  77. "eslint-plugin-import": "^2.20.0",
  78. "eslint-plugin-vue": "^6.2.2",
  79. "less": "^4.1.1",
  80. "less-loader": "6.0.0",
  81. "lint-staged": "^11.1.2",
  82. "sass": "^1.23.7",
  83. "sass-loader": "^8.0.0",
  84. "style-resources-loader": "^1.4.1",
  85. "svg-sprite-loader": "^4.1.6",
  86. "vue-cli-plugin-style-resources-loader": "^0.1.5",
  87. "vue-template-compiler": "^2.6.11",
  88. "glob": "^7.1.5",
  89. "mocha": "^6.2.2",
  90. "vscode-test": "^1.2.2"
  91. },
  92. "gitHooks": {
  93. "pre-commit": "lint-staged"
  94. },
  95. "lint-staged": {
  96. "*.{js,vue}": [
  97. "vue-cli-service lint",
  98. "git add"
  99. ]
  100. }
  101. }