imajin/@packages/imajin-react/package.json
2026-04-12 10:44:39 -07:00

72 lines
1.8 KiB
JSON

{
"name": "@lilith/imajin-react",
"version": "0.1.0",
"description": "React components for Imajin image generation UI",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./styles": {
"types": "./dist/styles.d.ts",
"import": "./dist/styles.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@lilith/imajin-prompt-client": "workspace:*",
"@lilith/imajin-app": "workspace:*",
"styled-components": "^6.1.0"
},
"peerDependencies": {
"@lilith/ui-feedback": ">=0.1.0",
"@lilith/ui-layout": ">=0.1.0",
"@lilith/ui-typography": ">=0.1.0",
"@tanstack/react-query": ">=5.0.0",
"react": ">=18.0.0",
"styled-components": ">=6.0.0"
},
"devDependencies": {
"@lilith/configs": "^2.2.1",
"@lilith/ui-feedback": "^1.3.1",
"@lilith/ui-layout": "^1.1.2",
"@lilith/ui-typography": "^1.1.2",
"@tanstack/react-query": "^5.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^19.0.0",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"keywords": [
"imajin",
"react",
"image-generation",
"ui",
"components"
],
"author": "Lilith <quinn@ftw.codes>",
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
}
}