{
  "name": "react-native-streaming-message-list",
  "version": "0.2.0",
  "description": "React Native message list with ChatGPT or Claude-style smart scrolling for incremental/streaming-like updates",
  "main": "./lib/commonjs/index.js",
  "module": "./lib/module/index.js",
  "types": "./lib/typescript/commonjs/src/index.d.ts",
  "exports": {
    ".": {
      "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"
  },
  "files": [
    "src",
    "lib",
    "android",
    "ios",
    "cpp",
    "*.podspec",
    "react-native.config.js",
    "!ios/build",
    "!android/build",
    "!android/gradle",
    "!android/gradlew",
    "!android/gradlew.bat",
    "!android/local.properties",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!**/.*"
  ],
  "scripts": {
    "example": "yarn workspace react-native-streaming-message-list-example",
    "clean": "del-cli lib",
    "prepare": "bob build",
    "typecheck": "tsc",
    "release": "release-it --only-version",
    "test": "jest",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "postpublish": "yarn example snack"
  },
  "keywords": [
    "react-native",
    "ios",
    "android",
    "chat",
    "messaging",
    "chatgpt",
    "claude",
    "ai",
    "ai-chat",
    "streaming",
    "smart-scroll",
    "flatlist",
    "legendlist",
    "conversational-ui"
  ],
  "dependencies": {
    "@legendapp/list": "^2.0.19",
    "lodash.debounce": "^4.0.8",
    "react-compiler-runtime": "^1.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bacarybruno/react-native-streaming-message-list.git"
  },
  "author": "bacarybruno <bacarybruno@gmail.com> (https://github.com/bacarybruno)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bacarybruno/react-native-streaming-message-list/issues"
  },
  "homepage": "https://github.com/bacarybruno/react-native-streaming-message-list#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",
    "@types/jest": "^29.5.14",
    "@types/lodash.debounce": "^4.0.9",
    "@types/react": "^19.1.12",
    "babel-plugin-react-compiler": "^1.0.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": "^29.7.0",
    "lefthook": "^2.0.3",
    "prettier": "^3.7.4",
    "react": "19.1.0",
    "react-native": "0.79.6",
    "react-native-builder-bob": "^0.40.17",
    "react-native-reanimated": "^3.17.6",
    "release-it": "^19.0.4",
    "typescript": "^5.9.2"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*",
    "react-native-reanimated": "*",
    "react-native-web": "*"
  },
  "peerDependenciesMeta": {
    "react-native-web": {
      "optional": true
    }
  },
  "workspaces": [
    "examples"
  ],
  "packageManager": "yarn@4.11.0",
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "commonjs",
        {
          "esm": true,
          "configFile": true
        }
      ],
      [
        "module",
        {
          "esm": true,
          "configFile": true
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  },
  "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"
        }
      }
    }
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "create-react-native-library": {
    "type": "library",
    "languages": "js",
    "tools": [
      "lefthook",
      "release-it",
      "jest",
      "eslint"
    ],
    "version": "0.56.0"
  }
}
