Files
winos-config/packages/dsc-ts/package.json
EthanShoeDev 3f18e881fa dynamic config
2025-12-22 16:52:35 -05:00

36 lines
914 B
JSON

{
"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:"
}
}