dynamic config

This commit is contained in:
EthanShoeDev
2025-12-22 16:52:35 -05:00
parent ac51644bda
commit 3f18e881fa
14 changed files with 2077 additions and 89 deletions

View File

@@ -4,8 +4,22 @@
"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"
},