all repos — stealth-developers @ 8456beb89cb3f3bb4b338c00e04341cff62d4711

pkgs/config/package.json (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
{
	"name": "@stealth-developers/config",
	"type": "module",
	"main": "./src/index.ts",
	"types": "./src/index.ts",
	"scripts": {
		"build:types": "tsc --emitDeclarationOnly",
		"build:js": "bun build ./src/index.ts --outdir ./dist --minify --target bun",
		"build": "bun run build:types && bun run build:js"
	},
	"dependencies": {
		"zod": "^4.4.3"
	},
	"devDependencies": {
		"@types/bun": "latest"
	},
	"peerDependencies": {
		"typescript": "^5"
	}
}