{ "name": "dsc-ts", "version": "0.0.1", "type": "module", "private": true, "packageManager": "bun@1.3.3", "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "winos-config": "./dist/bin.js" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "scripts": { "typecheck": "tsc --noEmit", "build:lib": "tsc", "build:bin": "bun build ./src/bin.ts --outdir ./dist --target bun --external \"*\" --minify", "build": "bun run build:lib && bun run build:bin", "gen:dsc-types": "bun run scripts/gen-dsc-types.ts", "gen:dsc-resources-types": "bun run scripts/gen-dsc-resources-types.ts" }, "dependencies": { "@effect/cli": "catalog:", "@effect/platform": "catalog:", "@effect/platform-bun": "catalog:", "effect": "catalog:" }, "devDependencies": { "typescript": "catalog:" } }