ui-quotes/package.json
autocommit 8e4abbf577 chore: initial package split from monorepo
Package: @lilith/ui-quotes
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:54 -07:00

44 lines
1,006 B
JSON

{
"name": "@lilith/ui-quotes",
"version": "1.0.0",
"description": "Cyberpunk and sci-fi quotes library with tree-shakeable per-category imports",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./categories": {
"types": "./dist/categories.d.ts",
"import": "./dist/categories.js"
},
"./categories/*": {
"types": "./dist/categories/*.d.ts",
"import": "./dist/categories/*.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.7.2"
},
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}