Update readme and clean up
This commit is contained in:
parent
6a3157762a
commit
435d555394
17 changed files with 320 additions and 486 deletions
21
package.json
21
package.json
|
@ -1,8 +1,17 @@
|
|||
{
|
||||
"name": "@proscenium/muse",
|
||||
"version": "0.0.1",
|
||||
"module": "index.ts",
|
||||
"version": "0.1.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",
|
||||
|
@ -20,9 +29,11 @@
|
|||
},
|
||||
"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",
|
||||
"clean": "rm -rf dist",
|
||||
"types": "dts-bundle-generator -o dist/muse.d.ts --project ./tsconfig.json ./src/exports.ts",
|
||||
"compile": "bun build ./src/cli.ts --outfile ./dist/muse --compile",
|
||||
"build": "bun run clean && bun run compile && bun run types",
|
||||
"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"
|
||||
"demo": "bun run ./src/cli.ts -- ./demo/main"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue