package.json 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. {
  2. "name": "automa",
  3. "version": "1.27.2",
  4. "description": "An extension for automating your browser by connecting blocks",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/kholid060/automa.git"
  8. },
  9. "scripts": {
  10. "build": "node utils/build.js",
  11. "build:firefox": "cross-env BROWSER=firefox yarn build",
  12. "build:zip": "node utils/build-zip.js",
  13. "build:prod": "yarn build:prod-chrome && yarn build:prod-firefox",
  14. "build:prod-chrome": "yarn build && yarn build:zip",
  15. "build:prod-firefox": "yarn build:firefox && cross-env BROWSER=firefox yarn build:zip",
  16. "dev": "node utils/webserver.js",
  17. "dev:firefox": "cross-env BROWSER=firefox yarn dev",
  18. "prettier": "prettier --write '**/*.{js,jsx,css,html}'",
  19. "lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
  20. },
  21. "engines": {
  22. "node": ">=14.18.1"
  23. },
  24. "simple-git-hooks": {
  25. "pre-commit": "npx lint-staged"
  26. },
  27. "lint-staged": {
  28. "*.{js,ts,vue}": "eslint --fix"
  29. },
  30. "dependencies": {
  31. "@codemirror/autocomplete": "^6.4.0",
  32. "@codemirror/lang-css": "^6.0.1",
  33. "@codemirror/lang-html": "^6.4.0",
  34. "@codemirror/lang-javascript": "^6.1.2",
  35. "@codemirror/lang-json": "^6.0.1",
  36. "@codemirror/language": "^6.4.0",
  37. "@codemirror/theme-one-dark": "^6.1.0",
  38. "@medv/finder": "^2.1.0",
  39. "@n8n_io/riot-tmpl": "^2.0.0",
  40. "@tiptap/core": "^2.0.0-beta.209",
  41. "@tiptap/extension-character-count": "^2.0.0-beta.209",
  42. "@tiptap/extension-history": "^2.0.0-beta.209",
  43. "@tiptap/extension-image": "^2.0.0-beta.209",
  44. "@tiptap/extension-link": "^2.0.0-beta.205",
  45. "@tiptap/extension-placeholder": "^2.0.0-beta.205",
  46. "@tiptap/starter-kit": "^2.0.0-beta.209",
  47. "@tiptap/vue-3": "^2.0.0-beta.209",
  48. "@viselect/vanilla": "^3.2.5",
  49. "@vue-flow/additional-components": "^1.3.3",
  50. "@vue-flow/core": "^1.12.7",
  51. "@vueuse/head": "^1.0.23",
  52. "@vueuse/rxjs": "^9.11.1",
  53. "@vuex-orm/core": "^0.36.4",
  54. "codemirror": "^6.0.1",
  55. "compare-versions": "^6.0.0-rc.1",
  56. "cron-parser": "^4.6.0",
  57. "cronstrue": "^2.21.0",
  58. "crypto-js": "^4.1.1",
  59. "css-selector-generator": "^3.6.4",
  60. "dagre": "^0.8.5",
  61. "dayjs": "^1.11.6",
  62. "defu": "^6.1.0",
  63. "dexie": "^3.2.2",
  64. "html2canvas": "^1.4.1",
  65. "idb": "^7.0.2",
  66. "json5": "^2.2.3",
  67. "jsonpath": "^1.1.1",
  68. "jspdf": "^2.5.1",
  69. "loader-utils": "^3.2.1",
  70. "lodash.clonedeep": "^4.5.0",
  71. "lodash.merge": "^4.6.2",
  72. "mitt": "^3.0.0",
  73. "mousetrap": "^1.6.5",
  74. "nanoid": "^4.0.0",
  75. "object-path": "^0.11.8",
  76. "papaparse": "^5.3.1",
  77. "pinia": "^2.0.29",
  78. "prosemirror-commands": "^1.5.0",
  79. "prosemirror-dropcursor": "^1.6.1",
  80. "prosemirror-gapcursor": "^1.3.1",
  81. "prosemirror-history": "^1.3.0",
  82. "prosemirror-keymap": "^1.2.0",
  83. "prosemirror-schema-list": "^1.2.2",
  84. "rxjs": "^7.8.0",
  85. "sizzle": "^2.3.8",
  86. "tippy.js": "^6.3.1",
  87. "v-remixicon": "^0.1.1",
  88. "vue": "^3.2.37",
  89. "vue-i18n": "^9.2.0-beta.40",
  90. "vue-imask": "^6.4.2",
  91. "vue-router": "^4.1.5",
  92. "vue-toastification": "^2.0.0-rc.5",
  93. "vuedraggable": "^4.1.0",
  94. "vuex": "^4.0.2",
  95. "webextension-polyfill": "^0.10.0",
  96. "xlsx": "https://cdn.sheetjs.com/xlsx-0.19.1/xlsx-0.19.1.tgz"
  97. },
  98. "devDependencies": {
  99. "@babel/core": "^7.20.7",
  100. "@babel/eslint-parser": "^7.18.2",
  101. "@babel/preset-env": "^7.20.2",
  102. "@intlify/vue-i18n-loader": "^4.2.0",
  103. "@tailwindcss/typography": "^0.5.1",
  104. "@vue/compiler-sfc": "^3.2.41",
  105. "archiver": "^5.3.1",
  106. "autoprefixer": "^10.4.12",
  107. "babel-loader": "^9.1.2",
  108. "clean-webpack-plugin": "4.0.0",
  109. "copy-webpack-plugin": "^11.0.0",
  110. "core-js": "^3.27.2",
  111. "cross-env": "^7.0.3",
  112. "css-loader": "^6.7.3",
  113. "eslint": "^8.31.0",
  114. "eslint-config-airbnb-base": "^15.0.0",
  115. "eslint-config-prettier": "^8.6.0",
  116. "eslint-friendly-formatter": "^4.0.1",
  117. "eslint-import-resolver-webpack": "^0.13.2",
  118. "eslint-plugin-import": "^2.27.5",
  119. "eslint-plugin-prettier": "^4.0.0",
  120. "eslint-plugin-vue": "^9.4.0",
  121. "file-loader": "^6.2.0",
  122. "fs-extra": "^11.1.0",
  123. "html-loader": "^4.2.0",
  124. "html-webpack-plugin": "^5.5.0",
  125. "lint-staged": "^13.0.2",
  126. "mini-css-extract-plugin": "^2.3.0",
  127. "postcss": "^8.4.21",
  128. "postcss-loader": "^7.0.0",
  129. "prettier": "^2.8.2",
  130. "simple-git-hooks": "^2.8.1",
  131. "source-map-loader": "^4.0.0",
  132. "tailwindcss": "^3.2.1",
  133. "terser-webpack-plugin": "^5.3.6",
  134. "vue-loader": "^17.0.0",
  135. "web-worker": "^1.2.0",
  136. "webpack": "^5.73.0",
  137. "webpack-cli": "^5.0.1",
  138. "webpack-dev-server": "^4.11.1"
  139. }
  140. }