feat(bgm): add board game manifest loader

Parse yaml/json/toml and markdown code blocks into packages, expanding
$variants via typed-csv and collecting parts, surfaces, and setups by
include patterns. Ships zod validation, a vitest config, and 16 tests.
This commit is contained in:
2026-08-09 18:59:14 +08:00
parent 1cfec40c99
commit c0967ab71f
14 changed files with 1242 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
export * from './types.js';
export * from './schemas.js';
export * from './markdown.js';
export * from './parse.js';
export * from './variants.js';
export * from './collect.js';