@ffsm/factory
Version:
A powerful component factory for React that simplifies creation of reusable components with built-in support for composition patterns, conditional rendering, prop management, and TypeScript integration.
86 lines • 2.04 kB
JSON
{
"name": "@ffsm/factory",
"version": "0.0.2",
"description": "A powerful component factory for React that simplifies creation of reusable components with built-in support for composition patterns, conditional rendering, prop management, and TypeScript integration.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"private": false,
"author": "S3Tech <s3tech.vn@gmail.com>",
"homepage": "https://github.com/ffsmio/monorepo/tree/main/packages/ffsmio-factory",
"repository": {
"type": "git",
"url": "git+https://github.com/ffsmio/monorepo/tree/main/packages/ffsmio-factory"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./compositor": {
"types": "./dist/compositor.d.ts",
"default": "./dist/compositor.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
],
"compositor": [
"./dist/compositor.d.ts"
]
}
},
"keywords": [
"React",
"component-factory",
"composition",
"conditional-rendering",
"prop-management",
"typescript",
"ref-forwarding",
"slot-based",
"component-library",
"design-system",
"tailwind",
"utility-first",
"empty-state",
"declarative",
"ui-patterns",
"component-composition",
"dynamic-components",
"type-safe",
"react-patterns",
"prop-forwarding"
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@ffsm/compositor": "0.0.2",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"react": "19.0.0",
"rimraf": "6.0.1",
"typescript": "5.8.2"
},
"peerDependencies": {
"@ffsm/compositor": "0.0.2",
"react": ">=16.0.0"
},
"peerDependenciesMeta": {
"@ffsm/compositor": {
"optional": true
}
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc",
"prepublishOnly": "yarn build"
}
}