40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "@endeavorance/muse",
|
|
"version": "0.3.0",
|
|
"module": "dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/muse.js",
|
|
"types": "./dist/muse.d.ts"
|
|
}
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@types/bun": "latest",
|
|
"dts-bundle-generator": "^9.5.1"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@endeavorance/emdy": "1.0.0",
|
|
"chalk": "^5.4.1",
|
|
"smol-toml": "^1.3.1",
|
|
"yaml": "^2.7.0",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"scripts": {
|
|
"fmt": "bunx --bun biome check --fix",
|
|
"clean": "rm -rf dist",
|
|
"types": "dts-bundle-generator -o dist/muse.d.ts --project ./tsconfig.json ./src/exports.ts",
|
|
"transpile": "bun build ./src/exports.ts --outfile ./dist/muse.js",
|
|
"compile": "bun run clean && bun build ./src/cli/index.ts --outfile ./dist/muse --compile",
|
|
"compile:install": "bun run compile && mv ./dist/muse ~/.local/bin/muse",
|
|
"build": "bun run clean && bun run transpile && bun run types",
|
|
"demo": "bun run ./src/cli/index.ts -- ./demo/main"
|
|
}
|
|
}
|