package.json 697 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "example-package-invalid-theme1",
  3. "version": "1.0.0",
  4. "main": "index.js",
  5. "growiPlugin": {
  6. "schemaVersion": "4",
  7. "types": ["theme"],
  8. "themes": [
  9. {
  10. "name": "theme1-1",
  11. "manifestKey": "src/styles/style.scss",
  12. "schemeType": "light",
  13. "lightBg": "#ff0000",
  14. "darkBg": "#0000ff",
  15. "lightSidebar": "#ffff00",
  16. "darkSidebar": "#ff8800",
  17. "lightIcon": "#ff0000",
  18. "darkIcon": "#000000",
  19. "createBtn": "#00ff00"
  20. },
  21. {
  22. "name": "theme1-2",
  23. "manifestKey": "src/styles/style.scss",
  24. "schemeType": "light",
  25. "// missing some attributes": ""
  26. }
  27. ]
  28. }
  29. }