package.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "violentmonkey",
  3. "description": "Violentmonkey",
  4. "version": "2.13.0",
  5. "scripts": {
  6. "dev": "gulp dev",
  7. "prebuild": "yarn ci",
  8. "build": "cross-env NODE_ENV=production gulp build",
  9. "build:selfHosted": "cross-env TARGET=selfHosted BETA=1 run-s build",
  10. "analyze": "cross-env RUN_ENV=analyze run-s build",
  11. "i18n": "gulp i18n",
  12. "copyI18n": "gulp copyI18n",
  13. "lint": "run-s lint:js lint:yml",
  14. "lint:js": "eslint --ext .js,.vue .",
  15. "lint:yml": "gulp check",
  16. "svgo": "plaid svgo",
  17. "test": "cross-env BABEL_ENV=test tape -r ./test/mock/register \"test/**/*.test.js\" | tap-summary",
  18. "ci": "run-s lint test",
  19. "transform": "locky yarn yarn",
  20. "bumpVersion": "gulp bump",
  21. "bump": "run-s ci \"bumpVersion --commit\"",
  22. "preversion": "run-s ci \"bumpVersion --reset\""
  23. },
  24. "devDependencies": {
  25. "@actions/core": "^1.9.0",
  26. "@actions/github": "^5.0.3",
  27. "@babel/helper-plugin-utils": "^7.18.6",
  28. "@babel/plugin-syntax-function-bind": "^7.18.6",
  29. "@babel/register": "^7.18.6",
  30. "@babel/runtime": "^7.18.6",
  31. "@gera2ld/locky": "^0.1.1",
  32. "@gera2ld/plaid": "~1.5.6",
  33. "@gera2ld/plaid-vue": "~1.6.5",
  34. "@gera2ld/plaid-webpack": "~1.5.5",
  35. "@types/chrome": "^0.0.191",
  36. "@types/firefox-webext-browser": "94.0.1",
  37. "amo-upload": "^0.2.0",
  38. "cross-env": "^7.0.3",
  39. "cross-spawn": "^7.0.3",
  40. "del": "^6.1.1",
  41. "eslint-plugin-vue": "^9.3.0",
  42. "fancy-log": "^2.0.0",
  43. "gulp": "^4.0.2",
  44. "gulp-plumber": "^1.1.0",
  45. "husky": "^4.2.3",
  46. "js-yaml": "^4.1.0",
  47. "jsdom": "^20.0.0",
  48. "npm-run-all": "^4.1.5",
  49. "plugin-error": "^2.0.0",
  50. "sharp": "^0.31.0",
  51. "tap-summary": "^4.0.0",
  52. "tape": "^5.5.3",
  53. "terser": "^5.14.1",
  54. "terser-webpack-plugin": "^4",
  55. "through2": "^4.0.2",
  56. "vue-eslint-parser": "^9.0.3",
  57. "vinyl": "^2.2.1",
  58. "wrapper-webpack-plugin": "2.1.0"
  59. },
  60. "author": "Gerald <[email protected]>",
  61. "repository": {
  62. "type": "git",
  63. "url": "https://github.com/violentmonkey/violentmonkey.git"
  64. },
  65. "bugs": {
  66. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  67. },
  68. "homepage": "https://github.com/violentmonkey/violentmonkey",
  69. "license": "MIT",
  70. "dependencies": {
  71. "@violentmonkey/shortcut": "^1.2.6",
  72. "@zip.js/zip.js": "^2.4.26",
  73. "codemirror": "^5.65.6",
  74. "codemirror-js-mixed": "^0.9.2",
  75. "tldjs": "^2.3.1",
  76. "vue": "^2.7.8",
  77. "vue-loader": "^15.10.0",
  78. "vue-template-babel-compiler": "^2.0.0",
  79. "vue-template-compiler": "^2.7.8",
  80. "vueleton": "^1.0.6"
  81. },
  82. "engines": {
  83. "node": ">=10"
  84. },
  85. "husky": {
  86. "hooks": {
  87. "pre-commit": "yarn transform -t",
  88. "pre-push": "run-p lint test"
  89. }
  90. },
  91. "beta": 26
  92. }