Reworked support for processing

This commit is contained in:
Endeavorance 2025-04-02 11:45:08 -04:00
parent c1166680a8
commit 6a3157762a
14 changed files with 318 additions and 473 deletions

View file

@ -6,32 +6,15 @@
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.0.11",
"@types/react-dom": "^19.0.4"
"dts-bundle-generator": "^9.5.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@proscenium/playbill": "link:@proscenium/playbill",
"@endeavorance/emdy": "1.0.0",
"chalk": "^5.4.1",
"classnames": "^2.5.1",
"lodash-es": "^4.17.21",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-headings-normalize": "^0.0.2",
"rehype-raw": "^7.0.0",
"rehype-shift-heading": "^2.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-normalize-headings": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-wiki-link": "^2.0.1",
"slugify": "^1.6.6",
"smol-toml": "^1.3.1",
"unified": "^11.0.5",
"yaml": "^2.7.0",
"zod": "^3.24.1"
},
@ -39,6 +22,7 @@
"fmt": "bunx --bun biome check --fix",
"build": "bun build ./src/index.ts --outfile muse --compile",
"demo": "bun run ./src/index.ts -- ./demo-data/great-spires/binding.yaml",
"build:install": "bun run build && mv muse ~/.local/bin/muse"
"build:install": "bun run build && mv muse ~/.local/bin/muse",
"types": "dts-bundle-generator -o types/muse.d.ts --project ./tsconfig.json ./src/types.ts"
}
}