extension.json 692 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "displayName": "Sample Extension - Preferences",
  3. "uniqueName": "yourCompany.Samples.Preferences",
  4. "description": "Sample preferences extension for PixiEditor",
  5. "version": "1.0.0",
  6. "author": {
  7. "name": "PixiEditor",
  8. "email": "[email protected]",
  9. "website": "https://pixieditor.net"
  10. },
  11. "publisher": {
  12. "name": "PixiEditor",
  13. "email": "[email protected]",
  14. "website": "https://pixieditor.net"
  15. },
  16. "contributors": [
  17. {
  18. "name": "flabbet",
  19. "email": "[email protected]",
  20. "website": "https://github.com/flabbet"
  21. }
  22. ],
  23. "permissions": [
  24. "WriteNonOwnedPreferences"
  25. ],
  26. "license": "MIT",
  27. "categories": [
  28. "Extension"
  29. ]
  30. }