{
  "name": "@tiny-design/react",
  "version": "1.16.0",
  "description": "A friendly UI component set for React",
  "license": "MIT",
  "keywords": [
    "tiny",
    "tiny-design",
    "design",
    "react",
    "react-component",
    "component",
    "components",
    "ui",
    "frontend",
    "react hook component",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/wangdicoder/tiny-design.git",
    "directory": "packages/react"
  },
  "author": "Di Wang<wangdicoder@gmail.com>",
  "homepage": "https://wangdicoder.github.io/tiny-design/",
  "publishConfig": {
    "access": "public"
  },
  "main": "lib/index.js",
  "module": "es/index.js",
  "typings": "lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./es/index.js",
      "require": "./lib/index.js"
    },
    "./lib/*": "./lib/*",
    "./es/*": "./es/*"
  },
  "sideEffects": [
    "**/*.css",
    "**/*.scss"
  ],
  "files": [
    "lib",
    "es"
  ],
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "dependencies": {
    "@popperjs/core": "^2.11.4",
    "classnames": "^2.3.1",
    "tslib": "^2.3.1",
    "@tiny-design/tokens": "1.16.0"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^6.0.0",
    "@testing-library/react": "^14.0.0",
    "@types/jest": "^29.0.0",
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "jest": "^29.0.0",
    "jest-environment-jsdom": "^29.0.0",
    "autoprefixer": "^10.4.4",
    "postcss": "^8.5.10",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rimraf": "^3.0.2",
    "sass": "^1.49.9",
    "ts-jest": "^29.0.0",
    "tsdown": "^0.21.1",
    "typescript": "^5.4.0",
    "@tiny-design/icons": "1.16.0"
  },
  "scripts": {
    "build": "npm run clean && tsdown && node scripts/build-styles.js && node scripts/inject-style-imports.js",
    "clean": "rimraf lib es",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:update": "jest --updateSnapshot",
    "lint": "eslint src/",
    "lint:style": "stylelint \"src/**/*.scss\"",
    "lint:style:fix": "npm run lint:style -- --fix"
  }
}