mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
24 lines
598 B
Lua
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
|
|
}
|