{
  "name": "react-native-uuid",
  "version": "2.0.4",
  "description": "react-native-uuid is a zero-dependency TypeScript implementation of RFC4122.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=9.0.0"
  },
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "prepare": "husky install",
    "test": "jest",
    "bench:rn": "node scripts/benchmark-rn-versions.js",
    "bench:security": "node scripts/security-benchmark.js",
    "bench:figures": "node scripts/generate-benchmark-figures.js",
    "bench:all": "npm run bench:rn && npm run bench:security && npm run bench:figures",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "docs": "typedoc ./src --entryDocument .",
    "prettier:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\" --no-error-on-unmatched-pattern",
    "prettier:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\" --no-error-on-unmatched-pattern",
    "lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx ./"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/eugenehp/react-native-uuid.git"
  },
  "keywords": [
    "uuid",
    "rfc4122",
    "react-native",
    "reactivelions"
  ],
  "author": "Eugene Hauptmann",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/eugenehp/react-native-uuid/issues"
  },
  "homepage": "https://github.com/eugenehp/react-native-uuid#readme",
  "devDependencies": {
    "@babel/core": "^7.24.0",
    "@babel/runtime": "^7.24.0",
    "@react-native-community/eslint-config": "^3.2.0",
    "@types/jest": "^29.5.0",
    "babel-jest": "^29.7.0",
    "eslint": "^8.57.0",
    "eslint-plugin-prettier": "^5.5.5",
    "husky": "^9.0.0",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.0",
    "metro-react-native-babel-preset": "^0.77.0",
    "prettier": "^3.2.0",
    "react-test-renderer": "^17.0.2",
    "ts-jest": "^29.4.6",
    "typedoc": "^0.25.4",
    "typedoc-plugin-markdown": "^3.17.1",
    "typescript": "^5.3.0"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{json,md}": [
      "prettier --write"
    ]
  }
}
