Package: @lilith/ui-quotes Split from: lilith/ui.git or lilith/build.git Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
44 lines
1,006 B
JSON
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
|
|
}
|
|
}
|