ui-asset-admin/package.json
2026-06-11 01:18:18 -07:00

65 lines
1.6 KiB
JSON

{
"name": "@lilith/ui-asset-admin",
"version": "1.0.1",
"description": "Reusable admin UI components for image generation",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist"
},
"dependencies": {
"@lilith/imajin-client": "^0.2.0",
"@lilith/ui-theme": "^1.0.0",
"@lilith/ui-feedback": "^1.0.0",
"@lilith/ui-forms": "^1.0.0",
"styled-components": "^6.1.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@lilith/eslint-config-react": "^1.0.0",
"@lilith/typescript-config-react": "^1.0.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.0",
"@types/styled-components": "^5.1.0",
"eslint": "^9.0.0",
"react": "^18.2.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"repository": {
"type": "git",
"url": "http://forge.black.lan/lilith/ui-asset-admin.git"
},
"keywords": [
"react",
"admin",
"image",
"generation",
"lilith"
],
"author": "Lilith Platform",
"license": "UNLICENSED"
}