{
  "name": "@dreamtree-org/twreact-ui",
  "version": "1.1.66",
  "description": "A comprehensive React + Tailwind components library for building modern web apps",
  "author": {
    "name": "Partha Preetham Krishna",
    "email": "partha.preetham.krishna@gmail.com",
    "url": "https://www.linkedin.com/in/partha-preetham-krishna-68ba00197/"
  },
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "typings": "dist/index.d.ts",
  "bin": {
    "twreact-ui": "./bin/cli.mjs"
  },
  "files": [
    "dist",
    "bin/cli.mjs",
    "mcp/server-core.mjs",
    "mcp/catalog-core.mjs",
    "mcp/catalog-snapshot.mjs",
    "mcp/catalog.snapshot.json",
    "ai-skills",
    "doc/assets/upi-qr.png",
    "package.json",
    "README.md"
  ],
  "scripts": {
    "build": "npm run build:types && npm run build:js && npm run gen:ai-schema",
    "build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly --outDir dist",
    "build:js": "node scripts/version-bump.js && cross-env NODE_ENV=production rollup -c --no-sourcemap",
    "gen:ai-schema": "node scripts/gen-ai-schema.mjs",
    "dev": "cross-env NODE_ENV=development rollup -c -w",
    "type-check": "tsc --noEmit",
    "test:types": "npm run build:types && tsc -p test/types/tsconfig.json",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts,.tsx,.js,.jsx",
    "lint:fix": "eslint src --ext .ts,.tsx,.js,.jsx --fix",
    "preview": "npm run build && npx serve dist -p 3000",
    "demo": "npx serve demo -p 3000",
    "storybook": "storybook dev -p 6006",
    "build-storybook": "storybook build",
    "mcp": "node mcp/server.mjs",
    "mcp:smoke": "node mcp/smoke.mjs",
    "mcp:snapshot": "node scripts/gen-mcp-snapshot.mjs",
    "mcp:snapshot:check": "node scripts/check-mcp-snapshot.mjs",
    "mcp:dist:smoke": "node scripts/mcp-dist-smoke.mjs",
    "prepublishOnly": "npm run mcp:snapshot && npm run mcp:snapshot:check",
    "skill:check": "node mcp/skill-check.mjs",
    "ai-schema:check": "jest scripts/__tests__/ai-schema.test.mjs",
    "init:smoke": "node bin/smoke.mjs",
    "readme:check": "node scripts/readme-sync-check.mjs",
    "adoption:report": "node scripts/adoption-report.mjs",
    "version:patch": "npm version patch && git push && git push --tags",
    "version:minor": "npm version minor && git push && git push --tags",
    "version:major": "npm version major && git push && git push --tags",
    "version:prerelease": "npm version prerelease && git push && git push --tags",
    "version:prepatch": "npm version prepatch && git push && git push --tags",
    "version:preminor": "npm version preminor && git push && git push --tags",
    "version:premajor": "npm version premajor && git push && git push --tags",
    "release": "npm run type-check && npm run build && npm run test:types && npm run test && npm run lint",
    "release:patch": "npm run release && npm run version:patch",
    "release:minor": "npm run release && npm run version:minor",
    "release:major": "npm run release && npm run version:major",
    "release:prerelease": "npm run release && npm run version:prerelease"
  },
  "keywords": [
    "react",
    "tailwind",
    "ui",
    "components",
    "javascript",
    "typescript",
    "design-system"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/preethamkrishnadev/dreamtree-ui.git"
  },
  "bugs": {
    "url": "https://github.com/preethamkrishnadev/dreamtree-ui/issues"
  },
  "homepage": "https://github.com/preethamkrishnadev/dreamtree-ui#readme",
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  },
  "peerDependencies": {
    "react": "^18.3.1",
    "react-dom": "^18.3.1"
  },
  "dependencies": {
    "@hookform/resolvers": "^3.10.0",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@reduxjs/toolkit": "^2.11.2",
    "axios": "^1.13.4",
    "clsx": "^1.2.1",
    "date-fns": "^2.30.0",
    "lucide-react": "^0.263.1",
    "react-hook-form": "^7.71.1",
    "react-redux": "^9.2.0",
    "redux-persist": "^6.0.0",
    "tailwind-merge": "^1.14.0",
    "yup": "^1.7.1"
  },
  "devDependencies": {
    "@babel/plugin-transform-runtime": "^7.28.5",
    "@babel/preset-env": "^7.28.6",
    "@babel/preset-react": "^7.28.5",
    "@babel/preset-typescript": "^7.28.0",
    "@babel/runtime": "^7.28.6",
    "@rollup/plugin-babel": "^6.1.0",
    "@rollup/plugin-commonjs": "^25.0.8",
    "@rollup/plugin-node-resolve": "^15.3.1",
    "@rollup/plugin-typescript": "^12.1.1",
    "@storybook/addon-essentials": "8.6.15",
    "@storybook/blocks": "8.6.15",
    "@storybook/react": "8.6.15",
    "@storybook/react-vite": "8.6.15",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^13.4.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.2",
    "@types/react": "^18.3.18",
    "@types/react-dom": "^18.3.5",
    "@typescript-eslint/eslint-plugin": "^8.19.1",
    "@typescript-eslint/parser": "^8.19.1",
    "autoprefixer": "^10.4.23",
    "babel-jest": "^29.7.0",
    "cross-env": "^10.1.0",
    "eslint": "^8.57.1",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^7.0.1",
    "identity-obj-proxy": "^3.0.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "jest-transform-stub": "^2.0.0",
    "postcss": "^8.5.6",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "rollup": "^4.57.1",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "rollup-plugin-postcss": "^4.0.2",
    "serve": "^14.2.5",
    "storybook": "8.6.15",
    "tailwindcss": "^3.4.19",
    "tslib": "^2.8.1",
    "typescript": "^5.7.2",
    "vite": "^6.4.1"
  }
}
