vagaro-tw-components
Version:
Tailwind CSS React TypeScript components for Vagaro
67 lines • 1.64 kB
JSON
{
"name": "vagaro-tw-components",
"version": "0.0.2",
"description": "Tailwind CSS React TypeScript components for Vagaro",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.27.0",
"postcss": "^8.4.49",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^3.4.17",
"tsup": "^8.3.6",
"typescript": "5.8.2",
"@repo/eslint-config": "0.0.0",
"@repo/typescript-config": "0.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vagaro/vagaro-turborepo.git",
"directory": "apps/vagaro-tw-components"
},
"keywords": [
"vagaro",
"react",
"components",
"tailwind",
"typescript"
],
"author": "Vagaro",
"license": "MIT",
"scripts": {
"build": "tsup",
"build:css": "tailwindcss -i ./src/styles/globals.css -o ./dist/styles.css --minify",
"dev": "tsup --watch",
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit",
"clean": "rm -rf dist"
}
}