package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "return-youtube-dislike",
  3. "version": "2.0.0",
  4. "description": "Chrome extension to return youtube dislikes",
  5. "main": "ryd.content-script.js",
  6. "scripts": {
  7. "start": "echo To build for development, please use \"npm run dev\". To build for production, please use \"npm run build\".",
  8. "dev": "webpack --mode=production --watch",
  9. "build": "webpack --mode=production",
  10. "build:safari": "webpack --mode=production && xcrun safari-web-extension-converter Extensions/combined/dist/safari --project-location Extensions/combined/dist --bundle-identifier com.returnyoutubedislike.safari-ext --force",
  11. "test": "echo \"Error: no test specified\" && exit 1"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/Anarios/return-youtube-dislike.git"
  16. },
  17. "keywords": [
  18. "youtube",
  19. "dislike",
  20. "return",
  21. "extension"
  22. ],
  23. "author": "Anarios",
  24. "bugs": {
  25. "url": "https://github.com/Anarios/return-youtube-dislike/issues"
  26. },
  27. "homepage": "https://github.com/Anarios/return-youtube-dislike#readme",
  28. "devDependencies": {
  29. "@babel/core": "^7.16.5",
  30. "@babel/preset-env": "^7.16.5",
  31. "@babel/runtime": "^7.16.5",
  32. "babel-loader": "^8.2.3",
  33. "copy-webpack-plugin": "^10.2.0",
  34. "filemanager-webpack-plugin": "^6.1.7",
  35. "webpack-cli": "^4.9.1"
  36. }
  37. }