ui-header/package.json
autocommit 4215404598 chore: initial package split from monorepo
Package: @lilith/ui-header
Split from: lilith/ui.git or lilith/build.git
Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
2026-04-20 01:11:51 -07:00

52 lines
1.3 KiB
JSON

{
"name": "@lilith/ui-header",
"version": "1.0.0",
"description": "Composable header primitives for Lilith platform applications",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src"
},
"dependencies": {
"@lilith/ui-feedback": "^1.3.12",
"@lilith/ui-glassmorphism": "^1.1.6",
"@lilith/ui-navigation": "^1.2.8",
"@lilith/ui-primitives": "^1.2.12",
"@lilith/ui-styled-components": "^6.3.8",
"@lilith/ui-theme": "^1.3.3",
"lucide-react": "^0.553.0"
},
"devDependencies": {
"@lilith/ui-router": "^1.2.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3"
},
"peerDependencies": {
"@lilith/ui-router": "^1.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"styled-components": "^6.0.0"
},
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}