diff --git a/package.json b/package.json index 676469f..ad55268 100644 --- a/package.json +++ b/package.json @@ -7,10 +7,12 @@ "aicl": "out/index.js" }, "scripts": { + "dev": "bun run index.ts", + "prod": "bun run out/index.js", "check": "bunx --bun @biomejs/biome check --write", - "prod": "bun run check && bun run build && bun run shebang", - "build": "bun build --target=bun --production --sourcemap --outdir=out index.ts", - "build:bin": "bun build --compile --outfile=out/aicl ./index.ts", + "build": "bun run check && bun run build:bundle && bun run shebang", + "build:bundle": "bun build --target=bun --production --sourcemap --outdir=out index.ts", + "build:bin": "bun build --compile --outfile=out/aicl index.ts", "shebang": "sed -i '1i#!\\/usr\\/bin\\/env bun' out/index.js" }, "devDependencies": {