@worldmatrix/wmx-core
v0.1.0
Published
Core types and manifest utilities for WorldMatrix assets.
Maintainers
Readme
@worldmatrix/wmx-core
Core types and manifest guards for WorldMatrix (.wmx.json) assets.
Install
npm install @worldmatrix/wmx-coreUsage
import { isWMXManifestV1 } from '@worldmatrix/wmx-core';
const parsed = JSON.parse(manifestJson);
if (!isWMXManifestV1(parsed)) {
throw new Error('Invalid WMX manifest');
}