You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"build:bundle": "NODE_ENV=production bun run generateExports && bun build --target bun --format esm --minify --outdir ./dist/ ./src/index.ts",
"build:standalone": "NODE_ENV=production bun run generateExports && bun build --compile --target bun --format esm --minify --outfile ./dist/phibi ./src/index.ts",
"start": "NODE_ENV=production bun src/index.ts",
"dev": "NODE_ENV=development bun src/index.ts",
"production:build": "bun run build:standalone",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome check --write .",
"lint:tsc": "bun tsc --noEmit",
"generateExports": "NODE_ENV=production bun run src/scripts/generateExports.ts"