muse/package.json

43 lines
1.2 KiB
JSON

{
"name": "@proscenium/muse",
"version": "0.0.1",
"module": "index.ts",
"type": "module",
"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"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@proscenium/playbill": "link:@proscenium/playbill",
"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",
"unified": "^11.0.5",
"yaml": "^2.7.0",
"zod": "^3.24.1"
},
"scripts": {
"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"
}
}