{
  "name": "react-native-nitro-storage",
  "version": "0.10.0",
  "description": "Synchronous React Native storage powered by Nitro Modules and JSI: typed Memory, Disk, Keychain/Android Keystore secure storage, biometric auth, MMKV migration, Expo, Zustand/Jotai persistence, and web IndexedDB support.",
  "main": "lib/commonjs/index.js",
  "module": "lib/module/index.js",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index.ts",
  "browser": "src/index.web.ts",
  "source": "src/index.ts",
  "app": "app.plugin.js",
  "exports": {
    ".": {
      "types": "./lib/typescript/index.d.ts",
      "react-native": "./src/index.ts",
      "browser": "./src/index.web.ts",
      "default": "./lib/commonjs/index.js"
    },
    "./indexeddb-backend": {
      "types": "./lib/typescript/indexeddb-backend.d.ts",
      "default": "./lib/commonjs/indexeddb-backend.js"
    },
    "./testing": {
      "types": "./lib/typescript/testing.d.ts",
      "react-native": "./src/testing.ts",
      "browser": "./src/testing.ts",
      "default": "./lib/commonjs/testing.js"
    },
    "./app.plugin": "./app.plugin.js",
    "./app.plugin.js": "./app.plugin.js",
    "./package.json": "./package.json"
  },
  "files": [
    "src",
    "lib",
    "cpp",
    "android",
    "ios",
    "docs",
    "nitrogen",
    "nitro.json",
    "CHANGELOG.md",
    "*.podspec",
    "SECURITY.md",
    "app.plugin.js",
    ".watchmanconfig",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!cpp/**/*Test.cpp",
    "!ios/*Test.mm",
    "!cpp/build",
    "!android/build",
    "!android/.cxx",
    "!scripts"
  ],
  "scripts": {
    "build": "bob build",
    "clean": "rimraf lib nitrogen/generated",
    "codegen": "nitrogen --logLevel=\"debug\"",
    "lint": "bunx eslint src --max-warnings=0",
    "lint:fix": "bunx eslint src --max-warnings=0 --fix",
    "lint:check": "bunx eslint src --max-warnings=0",
    "format": "bunx prettier --write \"src/**/*.{ts,tsx}\" \"../../README.md\" \"../../CHANGELOG.md\" \"../../SECURITY.md\" \"../../docs/**/*.md\"",
    "format:check": "bunx prettier --check \"src/**/*.{ts,tsx}\" \"../../README.md\" \"../../CHANGELOG.md\" \"../../SECURITY.md\" \"../../docs/**/*.md\"",
    "typecheck": "tsc --noEmit",
    "test:types": "tsc --noEmit -p tsconfig.types.json",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "benchmark": "node scripts/benchmark-check.js",
    "test:cpp": "node scripts/test-cpp.js",
    "test:cpp:asan": "node scripts/test-cpp.js --sanitize=address",
    "test:cpp:coverage": "node scripts/test-cpp.js --coverage",
    "test:cpp:tsan": "node scripts/test-cpp.js --sanitize=thread",
    "test:cpp:ubsan": "node scripts/test-cpp.js --sanitize=undefined",
    "check:pack": "node scripts/check-pack-contents.js",
    "prepublishOnly": "bun run clean && bun run codegen && bun run build && bun run test:types && bun run benchmark",
    "prepack": "node scripts/sync-package-docs.js prepare",
    "postpack": "node scripts/sync-package-docs.js cleanup"
  },
  "keywords": [
    "react-native",
    "react-native-storage",
    "react-native-secure-storage",
    "storage",
    "secure-storage",
    "encrypted-storage",
    "biometric-storage",
    "biometrics",
    "ios-keychain",
    "android-keystore",
    "nitro",
    "nitro-modules",
    "jsi",
    "synchronous-storage",
    "synchronous",
    "state-management",
    "react-native-mmkv",
    "mmkv",
    "async-storage",
    "expo-secure-store",
    "secure-store",
    "keychain",
    "persistence",
    "zustand",
    "jotai",
    "indexeddb",
    "native-module",
    "performance",
    "fast-storage"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/JoaoPauloCMarra/react-native-nitro-storage.git"
  },
  "author": "JoaoPauloCMarra",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/JoaoPauloCMarra/react-native-nitro-storage/issues"
  },
  "homepage": "https://github.com/JoaoPauloCMarra/react-native-nitro-storage#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@expo/config-plugins": "^57.0.6",
    "@react-native/babel-preset": "^0.86.2",
    "@testing-library/react-native": "^13.3.3",
    "@types/react": "~19.2.18"
  },
  "peerDependencies": {
    "react": ">=18.2.0",
    "react-native": ">=0.75.0",
    "react-native-nitro-modules": ">=0.37.0 <0.38.0"
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      [
        "typescript",
        {
          "tsc": "../../node_modules/.bin/tsc"
        }
      ]
    ]
  }
}
