admin-api/package.json

39 lines
869 B
JSON
Raw Permalink Normal View History

{
"name": "@lilith/admin-api",
"version": "1.0.0",
"description": "Shared API clients for Lilith Platform admin frontends",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./config": "./src/config.ts",
"./image-generation": "./src/image-generation.ts",
"./asset-storage": "./src/asset-storage.ts"
},
"files": [
"src"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint src/"
},
"peerDependencies": {
"@lilith/imajin-app": ">=0.1.0"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@lilith/imajin-app": ">=0.1.0",
"typescript": "~5.8.3"
},
"publishConfig": {
"access": "public",
"registry": "http://npm.black.lan:4873"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}