{
  "name": "@mgcrea/react-native-tailwind",
  "version": "0.16.0",
  "description": "Compile-time Tailwind CSS for React Native with zero runtime overhead",
  "author": "Olivier Louvignes <olivier@mgcrea.io> (https://github.com/mgcrea)",
  "homepage": "https://github.com/mgcrea/react-native-tailwind#readme",
  "repository": "github:mgcrea/react-native-tailwind",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./babel": {
      "import": "./dist/babel/index.cjs",
      "require": "./dist/babel/index.cjs"
    },
    "./runtime": {
      "types": "./dist/runtime.d.ts",
      "import": "./dist/runtime.js",
      "require": "./dist/runtime.cjs"
    },
    "./react-native": {
      "types": "./dist/react-native.d.ts"
    }
  },
  "files": [
    "src",
    "dist",
    "README.md"
  ],
  "scripts": {
    "dev": "cd example; npm run dev",
    "build": "npm run build:babel && npm run build:babel-plugin && npm run build:runtime && npm run build:types",
    "build:babel": "babel src --out-dir dist --extensions \".ts,.tsx,.js,.jsx\" --copy-files --ignore 'src/babel/**' --ignore '**/*.d.ts'",
    "build:babel-plugin": "node --experimental-strip-types scripts/bundle-babel-plugin.ts",
    "build:runtime": "node --experimental-strip-types scripts/bundle-runtime.ts",
    "build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly && node --experimental-strip-types scripts/post-build-types.ts",
    "install:ios": "cd ios && bundle exec pod install --repo-update && cd ..",
    "clean:ios": "cd ios && bundle exec pod deintegrate && rm -rf build Pods Podfile.lock && cd ..",
    "open:ios": "cd example; npm run open:ios",
    "lint": "eslint src/",
    "prettify": "prettier --write src/",
    "check": "tsc --noEmit",
    "spec": "vitest --run --coverage",
    "test": "npm run lint && npm run check && npm run spec",
    "prepare": "npm run build"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "devDependencies": {
    "@babel/cli": "^7.28.6",
    "@babel/core": "^7.29.0",
    "@babel/plugin-transform-modules-commonjs": "^7.28.6",
    "@babel/preset-react": "^7.28.5",
    "@babel/preset-typescript": "^7.28.5",
    "@babel/runtime": "^7.28.6",
    "@babel/types": "^7.29.0",
    "@mgcrea/eslint-config-react-native": "^0.14.1",
    "@react-native-community/cli": "^20.1.1",
    "@react-native/babel-preset": "0.84.0",
    "@react-native/typescript-config": "0.84.0",
    "@testing-library/react-native": "^13.3.3",
    "@types/babel__core": "^7.20.5",
    "@types/babel__traverse": "^7.28.0",
    "@types/react": "^19.2.14",
    "@vitest/coverage-v8": "^4.0.18",
    "babel-plugin-module-resolver": "^5.0.2",
    "esbuild": "^0.27.3",
    "eslint": "^9.39.1",
    "jest": "^30.2.0",
    "prettier": "^3.8.1",
    "prettier-plugin-organize-imports": "^4.3.0",
    "react": "^19.2.4",
    "react-native": "0.84.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "engines": {
    "node": ">=18"
  },
  "packageManager": "pnpm@10.29.3",
  "publishConfig": {
    "access": "public"
  },
  "pnpm": {
    "onlyBuiltDependencies": [
      "esbuild",
      "unrs-resolver"
    ]
  }
}
