leumas-package
v0.0.1
Published
Leumas marker package with project registration and indexer CLI
Readme
Leumas Package
Marker package for Leumas projects plus a filesystem indexer.
Install
npm install leumas-packageThe postinstall step writes .leumas/leumas.json at the repo root.
CLI
Register the current repo:
npx leumas-registerScan a directory for Leumas projects:
npx leumas-index --root D:/Leumas --prettyJS API
const { register, scan } = require("leumas-package");
register();
const results = scan("D:/Leumas");Output format
Each entry includes the discovered project root and metadata if present.
[
{
"projectRoot": "D:/Leumas/example",
"metadata": {
"projectRoot": "D:/Leumas/example",
"name": "example",
"timestamp": "2024-01-01T00:00:00.000Z"
}
}
]