dub.json 530 B

123456789101112131415161718192021222324252627
  1. {
  2. "authors": [
  3. "Faissal Isslam Bensefia"
  4. ],
  5. "copyright": "Copyright © 2019, Faissal Isslam Bensefia",
  6. "description": "automatically cut out a downloaded YouTube video's sponsors",
  7. "license": "GPLv3",
  8. "name": "sponskrub",
  9. "configurations": [
  10. {
  11. "name": "all",
  12. "targetType": "none",
  13. "dependencies": {
  14. "sponskrub:sponskrub": "*"
  15. }
  16. }
  17. ],
  18. "subPackages": [
  19. {
  20. "name": "sponskrub",
  21. "targetType": "executable",
  22. "mainSourceFile": "src/sponskrub/sponskrub.d",
  23. "targetName": "./sponskrub"
  24. }
  25. ]
  26. }