extension.json 933 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "displayName": "Sample Extension 1",
  3. "uniqueName": "yourCompany.Samples.SampleExtension",
  4. "description": "Sample extension 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": "PixiLang",
  15. "code": "px",
  16. "localeFileName": "Localization/pixiLang.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. "name": "CPK"
  38. }
  39. ],
  40. "license": "MIT",
  41. "categories": [
  42. "Extension"
  43. ]
  44. }