Update package.json

This commit is contained in:
Endeavorance 2025-04-02 20:43:46 -04:00
parent f834accb8d
commit afbb0cbaa5

View file

@ -1,5 +1,5 @@
{ {
"name": "@proscenium/muse", "name": "@endeavorance/muse",
"version": "0.1.0", "version": "0.1.0",
"module": "dist/index.js", "module": "dist/index.js",
"exports": { "exports": {
@ -31,9 +31,10 @@
"fmt": "bunx --bun biome check --fix", "fmt": "bunx --bun biome check --fix",
"clean": "rm -rf dist", "clean": "rm -rf dist",
"types": "dts-bundle-generator -o dist/muse.d.ts --project ./tsconfig.json ./src/exports.ts", "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 build ./src/cli.ts --outfile ./dist/muse --compile", "compile": "bun build ./src/cli.ts --outfile ./dist/muse --compile",
"build": "bun run clean && bun run compile && bun run types", "compile:install": "bun run compile && mv ./dist/muse ~/.local/bin/muse",
"build:install": "bun run build && mv muse ~/.local/bin/muse", "build": "bun run clean && bun run transpile && bun run types",
"demo": "bun run ./src/cli.ts -- ./demo/main" "demo": "bun run ./src/cli.ts -- ./demo/main"
} }
} }