package.json 2.7 KB

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