yaml-config/package.json
autocommit 21af0465ce
Some checks failed
Build and Publish / build-and-publish (push) Failing after 43s
chore: bump version to 1.0.28
2026-04-12 11:30:24 -07:00

58 lines
1.3 KiB
JSON

{
"name": "@lilith/yaml-loader",
"version": "1.0.28",
"description": "Type-safe YAML configuration loader with validation, environment variable override, and hot reload support",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"build": "tsup",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"typecheck": "tsc --noEmit"
},
"keywords": [
"config",
"yaml",
"configuration",
"type-safe",
"validation",
"zod"
],
"author": "Quinn <quinn@ftw.codes>",
"license": "MIT",
"dependencies": {
"yaml": "^2.8.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@types/node": "^20.19.28",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "http://forge.black.local/lilith/yaml-config"
},
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}