{
  "name": "rn-inkpad",
  "version": "2.1.0",
  "description": "Lightweight, themeable UI components for React Native (iOS, Android and Web)",
  "main": "./lib/commonjs/index.js",
  "module": "./lib/module/index.js",
  "types": "./lib/typescript/commonjs/src/index.d.ts",
  "exports": {
    ".": {
      "rn-inkpad-source": "./src/index.ts",
      "import": {
        "types": "./lib/typescript/module/src/index.d.ts",
        "default": "./lib/module/index.js"
      },
      "require": {
        "types": "./lib/typescript/commonjs/src/index.d.ts",
        "default": "./lib/commonjs/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "src",
    "lib",
    "!src/assets",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!**/.*"
  ],
  "scripts": {
    "example": "yarn workspace rn-inkpad-example",
    "clean": "del-cli lib",
    "build": "bob build",
    "prepare": "bob build && husky",
    "typecheck": "tsc",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "lint:fix": "eslint \"**/*.{js,ts,tsx}\" --fix",
    "test": "jest",
    "test:watch": "jest --watch",
    "prepack": "bob build",
    "release": "release-it",
    "docs": "npm --prefix docs start",
    "docs:build": "npm --prefix docs run build",
    "release:beta": "release-it --preRelease=beta --npm.tag=next",
    "docs:deploy": "npm --prefix docs run build && npm --prefix docs run deploy:firebase"
  },
  "peerDependencies": {
    "react": ">=18.2.0",
    "react-native": ">=0.73.0"
  },
  "devDependencies": {
    "@eslint/compat": "^2.1.0",
    "@eslint/eslintrc": "^3.3.5",
    "@eslint/js": "^9.39.0",
    "@react-native/babel-preset": "0.83.10",
    "@react-native/eslint-config": "0.83.10",
    "@testing-library/react-native": "^14.0.1",
    "@types/jest": "^29.5.14",
    "@types/react": "^19.2.0",
    "del-cli": "^7.0.0",
    "eslint": "^9.39.4",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-ft-flow": "^3.0.11",
    "eslint-plugin-prettier": "^5.5.6",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^16.1.6",
    "prettier": "^3.8.3",
    "react": "19.2.0",
    "react-native": "0.83.10",
    "react-native-builder-bob": "^0.43.0",
    "release-it": "^19.0.0",
    "test-renderer": "^1.0.0",
    "typescript": "^6.0.3"
  },
  "workspaces": [
    "example"
  ],
  "packageManager": "yarn@4.11.0",
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/FerRiv3ra/rn-inkpad.git"
  },
  "keywords": [
    "react-native",
    "react-native-web",
    "ui library",
    "ui components",
    "alert",
    "prompt",
    "actionsheet",
    "avatar",
    "button",
    "floating",
    "checkbox",
    "radiobuttons",
    "card",
    "floatingcard",
    "inputs",
    "navigation",
    "bottom navigation",
    "tab navigation",
    "progress",
    "progressbar",
    "rating",
    "slide",
    "switch",
    "tab control",
    "toast",
    "tooltip",
    "drawer",
    "lightweight",
    "lucide",
    "svg icons",
    "zero dependencies"
  ],
  "author": "FerRivera <fernando@softvize-premier.com> (https://feriv3ra.netlify.app)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/FerRiv3ra/rn-inkpad/issues"
  },
  "homepage": "https://rn-inkpad.web.app",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "lint-staged": {
    "*.{json,md}": [
      "prettier --write"
    ],
    "*.{js,ts,tsx}": [
      "eslint --fix",
      "prettier --write"
    ]
  },
  "prettier": {
    "arrowParens": "avoid",
    "bracketSameLine": true,
    "bracketSpacing": false,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/",
      "<rootDir>/docs/"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/jest.setup.js"
    ]
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release v${version}",
      "tagName": "v${version}",
      "requireCleanWorkingDir": true
    },
    "npm": {
      "publish": false
    },
    "github": {
      "release": true,
      "releaseName": "v${version}",
      "releaseNotes": "awk '/^## \\[${version}\\]/{f=1;next} /^## \\[/{f=0} f' CHANGELOG.md"
    },
    "hooks": {
      "before:init": [
        "yarn typecheck",
        "yarn lint",
        "yarn test"
      ],
      "after:bump": [
        "yarn build"
      ]
    }
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "commonjs",
        {
          "esm": true
        }
      ],
      [
        "module",
        {
          "esm": true
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
