{
  "name": "expo-game-center",
  "version": "1.0.0",
  "description": "A comprehensive Expo module for iOS Game Center integration, providing authentication, leaderboards, achievements, and native UI presentation.",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "scripts": {
    "build": "tsc && npm run build:plugin",
    "build:plugin": "cd plugin && tsc",
    "clean": "rm -rf build && rm -rf plugin/build",
    "lint": "eslint src/ --ext .ts,.tsx,.js,.jsx",
    "lint:fix": "eslint src/ --ext .ts,.tsx,.js,.jsx --fix",
    "typecheck": "tsc --noEmit",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:ci": "jest --ci --coverage --watchAll=false",
    "prepublishOnly": "npm run clean && npm run build && npm run test:ci",
    "release": "node scripts/release.js",
    "release:patch": "npm version patch && npm run release:publish",
    "release:minor": "npm version minor && npm run release:publish", 
    "release:major": "npm version major && npm run release:publish",
    "release:publish": "git push origin main && git push origin --tags"
  },
  "keywords": [
    "expo",
    "expo-module",
    "game-center",
    "ios",
    "gamecenter",
    "leaderboards",
    "achievements",
    "native-module",
    "react-native"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Rouic/expo-game-center.git"
  },
  "bugs": {
    "url": "https://github.com/Rouic/expo-game-center/issues"
  },
  "homepage": "https://github.com/Rouic/expo-game-center#readme",
  "author": {
    "name": "Rouic",
    "url": "https://github.com/Rouic"
  },
  "license": "MIT",
  "files": [
    "build",
    "ios",
    "plugin",
    "expo-module.config.json",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@expo/config-plugins": "^7.0.0"
  },
  "optionalDependencies": {
    "@types/react": "^18.0.0",
    "@types/react-native": "^0.70.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.5.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.0"
  },
  "peerDependencies": {
    "expo": ">=49.0.0",
    "react": "*",
    "react-native": "*"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "expo": {
    "platforms": ["ios"]
  }
}