{
  "name": "react-native-ease",
  "version": "0.7.2",
  "description": "Lightweight declarative animations powered by platform APIs",
  "main": "./lib/module/index.js",
  "types": "./lib/typescript/src/index.d.ts",
  "exports": {
    ".": {
      "source": "./src/index.tsx",
      "types": "./lib/typescript/src/index.d.ts",
      "default": "./lib/module/index.js"
    },
    "./uniwind": {
      "source": "./src/uniwind.ts",
      "types": "./lib/typescript/src/uniwind.d.ts",
      "default": "./lib/module/uniwind.js"
    },
    "./nativewind": {
      "source": "./src/nativewind.ts",
      "types": "./lib/typescript/src/nativewind.d.ts",
      "default": "./lib/module/nativewind.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "src",
    "lib",
    "android",
    "ios",
    "cpp",
    "*.podspec",
    "skills",
    "!ios/build",
    "!android/build",
    "!android/gradle",
    "!android/gradlew",
    "!android/gradlew.bat",
    "!android/local.properties",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!**/.*",
    ".claude-plugin"
  ],
  "scripts": {
    "example": "yarn workspace react-native-ease-example",
    "docs": "yarn --cwd docs",
    "docs:start": "yarn --cwd docs start",
    "docs:build": "yarn --cwd docs build",
    "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
    "prepare": "bob build",
    "test": "jest",
    "lint": "yarn lint:eslint && yarn lint:ts && yarn lint:ts:example",
    "lint:ts": "tsc",
    "lint:ts:example": "tsc -p example/tsconfig.json --noEmit",
    "lint:eslint": "eslint \"**/*.{js,ts,tsx}\"",
    "release": "release-it --only-version",
    "format:prettier:check": "prettier \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\" --check",
    "format:prettier:write": "yarn format:prettier:check --write",
    "format:clang:check": "clang-format --dry-run --Werror --glob='{ios,android/src}/**/*.{h,cpp,m,mm}'",
    "format:clang:write": "clang-format -i --glob='{ios,android/src}/**/*.{h,hpp,cpp,m,mm}'",
    "format:check": "yarn format:prettier:check && yarn format:clang:check",
    "format:write": "yarn format:prettier:write && yarn format:clang:write"
  },
  "keywords": [
    "react-native",
    "ios",
    "android"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AppAndFlow/react-native-ease.git"
  },
  "author": "Janic Duplessis <janic@appandflow.com> (https://github.com/janicduplessis)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/AppAndFlow/react-native-ease/issues"
  },
  "homepage": "https://github.com/AppAndFlow/react-native-ease#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "^19.8.1",
    "@eslint/compat": "^1.3.2",
    "@eslint/eslintrc": "^3.3.1",
    "@eslint/js": "^9.35.0",
    "@react-native/babel-preset": "0.83.0",
    "@react-native/eslint-config": "0.83.0",
    "@release-it/conventional-changelog": "^10.0.1",
    "@testing-library/jest-native": "^5.4.3",
    "@testing-library/react-native": "^13.3.3",
    "@types/jest": "^29.5.14",
    "@types/react": "^19.2.0",
    "@types/react-test-renderer": "^19",
    "clang-format": "^1.8.0",
    "commitlint": "^19.8.1",
    "del-cli": "^6.0.0",
    "eslint": "^9.35.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "jest": "^30.2.0",
    "lefthook": "^2.0.3",
    "prettier": "^2.8.8",
    "react": "19.2.0",
    "react-native": "0.83.0",
    "react-native-builder-bob": "^0.40.18",
    "react-test-renderer": "19.2.0",
    "release-it": "^19.0.4",
    "turbo": "^2.5.6",
    "typescript": "^5.9.2"
  },
  "peerDependencies": {
    "nativewind": ">=4",
    "react": "*",
    "react-native": "*",
    "uniwind": ">=1"
  },
  "peerDependenciesMeta": {
    "nativewind": {
      "optional": true
    },
    "uniwind": {
      "optional": true
    }
  },
  "workspaces": [
    "example",
    "docs"
  ],
  "packageManager": "yarn@4.11.0",
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "module",
        {
          "esm": true
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  },
  "codegenConfig": {
    "name": "EaseViewSpec",
    "type": "all",
    "jsSrcsDir": "src",
    "android": {
      "javaPackageName": "com.ease"
    },
    "ios": {
      "components": {
        "EaseView": {
          "className": "EaseView"
        }
      }
    }
  },
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "all",
    "useTabs": false
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    },
    "npm": {
      "publish": true
    },
    "github": {
      "release": true
    },
    "plugins": {
      "@release-it/conventional-changelog": {
        "preset": {
          "name": "angular"
        }
      }
    }
  },
  "create-react-native-library": {
    "type": "fabric-view",
    "languages": "kotlin-objc",
    "tools": [
      "eslint",
      "jest",
      "lefthook",
      "release-it"
    ],
    "version": "0.57.2"
  }
}
