extension.json 947 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "displayName": "Sample Extension - Command Library",
  3. "uniqueName": "yourCompany.Samples.CommandLibrary",
  4. "description": "Commands Library that can be invoked by other extensions for PixiEditor",
  5. "version": "1.0.0",
  6. "localization": {
  7. "languages": [
  8. {
  9. "name": "English",
  10. "code": "en",
  11. "localeFileName": "Localization/en.json"
  12. },
  13. {
  14. "name": "Polish",
  15. "code": "pl",
  16. "localeFileName": "Localization/pl.json"
  17. }
  18. ]
  19. },
  20. "author": {
  21. "name": "PixiEditor",
  22. "email": "[email protected]",
  23. "website": "https://pixieditor.net"
  24. },
  25. "publisher": {
  26. "name": "PixiEditor",
  27. "email": "[email protected]",
  28. "website": "https://pixieditor.net"
  29. },
  30. "contributors": [
  31. {
  32. "name": "flabbet",
  33. "email": "[email protected]",
  34. "website": "https://github.com/flabbet"
  35. }
  36. ],
  37. "license": "MIT",
  38. "categories": [
  39. "Extension"
  40. ]
  41. }