react-tvcx
Version:
A library providing functions to help users create a reusable component system for their projects using React, Tailwind CSS, and TypeScript.
68 lines (67 loc) • 1.57 kB
JSON
{
"name": "react-tvcx",
"version": "3.0.5",
"author": "onepercman",
"description": "A library providing functions to help users create a reusable component system for their projects using React, Tailwind CSS, and TypeScript.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/onepercman/react-tvcx"
},
"bugs": {
"url": "https://github.com/onepercman/react-tvcx/issues"
},
"homepage": "https://github.com/onepercman/react-tvcx",
"keywords": [
"react",
"tailwind",
"typescript",
"component-library",
"reusable-components"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"prepublishOnly": "npm run build"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"files": [
"dist"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"tailwind-variants": "^0.2.1"
},
"devDependencies": {
"@types/node": "^22.7.9",
"@types/react": "^18.3.12",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"jest": "^29.0.0",
"@types/jest": "^29.0.0"
},
"dependencies": {
"clsx": "^2.1.1",
"react": "^18.3.1",
"tailwind-merge": "^2.5.4",
"tailwind-variants": "^0.2.1"
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
}