package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "automa",
  3. "version": "0.3.2",
  4. "description": "An extension for automating your browser by connecting blocks",
  5. "license": "MIT",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/kholid060/automa.git"
  9. },
  10. "scripts": {
  11. "build": "node utils/build.js",
  12. "build:zip": "node utils/build-zip.js",
  13. "dev": "node utils/webserver.js",
  14. "prettier": "prettier --write '**/*.{js,jsx,css,html}'",
  15. "lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
  16. },
  17. "simple-git-hooks": {
  18. "pre-commit": "npx lint-staged"
  19. },
  20. "lint-staged": {
  21. "*.{js,ts,vue}": "eslint --fix"
  22. },
  23. "dependencies": {
  24. "@codemirror/basic-setup": "^0.19.0",
  25. "@codemirror/commands": "^0.19.5",
  26. "@codemirror/lang-javascript": "^0.19.2",
  27. "@codemirror/lang-json": "^0.19.1",
  28. "@codemirror/state": "^0.19.5",
  29. "@codemirror/text": "^0.19.5",
  30. "@codemirror/theme-one-dark": "^0.19.1",
  31. "@codemirror/view": "^0.19.15",
  32. "@medv/finder": "^2.1.0",
  33. "@vuex-orm/core": "^0.36.4",
  34. "@webcomponents/custom-elements": "^1.5.0",
  35. "dayjs": "^1.10.7",
  36. "drawflow": "^0.0.51",
  37. "mousetrap": "^1.6.5",
  38. "mustache": "^4.2.0",
  39. "nanoid": "3.1.28",
  40. "object-path-immutable": "^4.1.2",
  41. "papaparse": "^5.3.1",
  42. "prismjs": "^1.25.0",
  43. "tiny-emitter": "^2.1.0",
  44. "tippy.js": "^6.3.1",
  45. "v-remixicon": "^0.1.1",
  46. "vue": "3.2.19",
  47. "vue-prism-editor": "^2.0.0-alpha.2",
  48. "vue-router": "^4.0.11",
  49. "vue-virtual-scroller": "^2.0.0-alpha.1",
  50. "vuedraggable": "^4.1.0",
  51. "vuex": "^4.0.2",
  52. "webextension-polyfill": "^0.8.0"
  53. },
  54. "devDependencies": {
  55. "@babel/core": "7.15.5",
  56. "@babel/eslint-parser": "7.15.7",
  57. "@babel/plugin-proposal-class-properties": "7.14.5",
  58. "@babel/preset-env": "7.15.6",
  59. "@vue/compiler-sfc": "3.2.19",
  60. "archiver": "^5.3.0",
  61. "autoprefixer": "10.3.6",
  62. "babel-eslint": "^10.1.0",
  63. "babel-loader": "^8.2.2",
  64. "clean-webpack-plugin": "4.0.0",
  65. "copy-webpack-plugin": "9.0.1",
  66. "core-js": "3",
  67. "css-loader": "5.2.7",
  68. "eslint": "7.32.0",
  69. "eslint-config-airbnb-base": "^14.2.1",
  70. "eslint-config-prettier": "^8.3.0",
  71. "eslint-friendly-formatter": "^4.0.1",
  72. "eslint-import-resolver-webpack": "^0.13.2",
  73. "eslint-plugin-flowtype": "6.1.0",
  74. "eslint-plugin-import": "^2.24.2",
  75. "eslint-plugin-prettier": "^4.0.0",
  76. "eslint-plugin-vue": "7.18.0",
  77. "file-loader": "^6.2.0",
  78. "fs-extra": "10.0.0",
  79. "html-loader": "2.1.2",
  80. "html-webpack-plugin": "5.3.2",
  81. "lint-staged": "^11.1.2",
  82. "mini-css-extract-plugin": "^2.3.0",
  83. "postcss": "8.3.8",
  84. "postcss-loader": "^6.1.1",
  85. "prettier": "^2.4.1",
  86. "simple-git-hooks": "^2.6.1",
  87. "source-map-loader": "3.0.0",
  88. "style-loader": "3.3.0",
  89. "tailwindcss": "2.2.16",
  90. "terser-webpack-plugin": "5.2.4",
  91. "vue-loader": "16.8.1",
  92. "webpack": "5.55.1",
  93. "webpack-cli": "4.8.0",
  94. "webpack-dev-server": "3.11.2"
  95. }
  96. }