Files
metabuilder/packages/package_validator/seed/scripts/structure_config.lua
2025-12-31 00:17:35 +00:00

24 lines
598 B
Lua

--- Structure configuration constants
---@type StructureConfig
local REQUIRED_STRUCTURE = {
["seed/metadata.json"] = true,
["seed/components.json"] = true
}
---@type StructureConfig
local OPTIONAL_STRUCTURE = {
["seed/scripts/"] = "directory",
["seed/scripts/init.lua"] = "file",
["seed/scripts/tests/"] = "directory",
["seed/styles.json"] = "file",
["static_content/"] = "directory",
["static_content/icon.svg"] = "file",
["README.md"] = "file",
["examples/"] = "directory"
}
return {
REQUIRED = REQUIRED_STRUCTURE,
OPTIONAL = OPTIONAL_STRUCTURE
}