ui-style-effects/package.json
autocommit 64a027fda0 chore: initial package split from monorepo
Package: @lilith/ui-style-effects
Split from: lilith/ui.git or lilith/build.git
Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
2026-04-20 01:10:28 -07:00

67 lines
1.7 KiB
JSON

{
"name": "@lilith/ui-style-effects",
"version": "1.1.0",
"description": "Generic visual effects primitives, presets, and tier-style factory for subscription UIs",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./primitives": {
"types": "./dist/primitives/index.d.ts",
"import": "./dist/primitives/index.js"
},
"./animations": {
"types": "./dist/animations/index.d.ts",
"import": "./dist/animations/index.js"
},
"./presets": {
"types": "./dist/presets/index.d.ts",
"import": "./dist/presets/index.js"
},
"./factory": {
"types": "./dist/factory/index.d.ts",
"import": "./dist/factory/index.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"type-check": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"test": "echo 'No tests yet'",
"showcase": "../ui-icons/node_modules/.bin/vite --config showcase/vite.config.ts",
"dev": "bun run showcase"
},
"dependencies": {
"@lilith/ui-styled-components": "^6.3.9"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"styled-components": "^6.0.0"
},
"devDependencies": {
"@types/react": "^19.2.8",
"typescript": "^5.9.3",
"react": "^19.2.3"
},
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}