{
  "name": "@instantdb/react-native-mmkv",
  "version": "1.0.53",
  "description": "React Native MMKV interface for Instant DB",
  "license": "Apache-2.0",
  "homepage": "https://github.com/instantdb/instant/tree/main/client/packages/react-native-mmkv",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/instantdb/instant.git",
    "directory": "client/packages/react-native-mmkv"
  },
  "main": "dist/index.js",
  "module": "dist/module/index.js",
  "types": "dist/module/index.d.ts",
  "unpkg": "dist/index.js",
  "devDependencies": {
    "@babel/core": "^7.17.9",
    "@babel/preset-env": "^7.16.11",
    "@types/node": "^22.6.1",
    "npm-run-all": "^4.1.5",
    "react-native-mmkv": "^4.1.1",
    "typescript": "^5.9.3",
    "vitest": "^0.21.0"
  },
  "peerDependencies": {
    "react-native-mmkv": ">=1.15"
  },
  "dependencies": {
    "@instantdb/core": "1.0.53"
  },
  "scripts": {
    "test": "vitest",
    "test:types": "tsc -p tsconfig.test.json --noEmit",
    "test:ci": "pnpm run test:types",
    "build": "rm -rf dist; npm run build:main && npm run build:module",
    "dev:main": "tsc -p tsconfig.json -w --skipLibCheck --preserveWatchOutput | grep -v '^$'",
    "dev:module": "tsc -p tsconfig.module.json -w --skipLibCheck --preserveWatchOutput | grep -v '^$'",
    "dev": "run-p dev:main dev:module",
    "clean": "rm -rf dist",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "publish-package": "pnpm pack && npm publish *.tgz --access public"
  }
}