schema.json 741 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "$id": "sidebar-nav",
  4. "title": "Sidebar Navigation Layout",
  5. "type": "object",
  6. "properties": {
  7. "project": {
  8. "type": "string",
  9. "description": "The name of the project.",
  10. "$default": {
  11. "$source": "projectName"
  12. }
  13. },
  14. "style": {
  15. "description": "The file extension or preprocessor to use for style files.",
  16. "type": "string",
  17. "default": "css",
  18. "enum": [
  19. "css",
  20. "scss",
  21. "sass",
  22. "less"
  23. ]
  24. },
  25. "prefix": {
  26. "type": "string",
  27. "format": "html-selector",
  28. "description": "A prefix to apply to generated selectors.",
  29. "default": "app",
  30. "alias": "p"
  31. }
  32. }
  33. }