{
  "name": "react-native-chessboard",
  "version": "0.2.0",
  "description": "A lightweight, simple, and high-performing chessboard for React Native",
  "main": "lib/commonjs/index",
  "module": "lib/module/index",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index",
  "source": "src/index",
  "files": [
    "src",
    "lib",
    "scripts/generate-sprite.js",
    "!lib/typescript/example",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!**/*.map"
  ],
  "bin": {
    "react-native-chessboard-generate-sprite": "./scripts/generate-sprite.js"
  },
  "scripts": {
    "test": "jest",
    "typecheck": "tsc --noEmit",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "lint:fix": "eslint \"**/*.{js,ts,tsx}\" --fix",
    "format": "prettier --write \"**/*.{js,ts,tsx,json,md}\"",
    "format:check": "prettier --check \"**/*.{js,ts,tsx,json,md}\"",
    "ci": "bun run lint && bun run typecheck && bun run format:check && bun run test",
    "prepare": "husky install && bob build",
    "example": "bun --cwd example",
    "pods": "cd example && pod-install --quiet",
    "bootstrap": "bun install && cd example && bun install && pod-install --quiet"
  },
  "keywords": [
    "react-native",
    "ios",
    "android"
  ],
  "repository": "https://github.com/enzomanuelmangano/react-native-chessboard",
  "author": "Enzo Manuel Mangano <enzomanuelmangano@gmail.com> (https://github.com/enzomanuelmangano)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/enzomanuelmangano/react-native-chessboard/issues"
  },
  "homepage": "https://github.com/enzomanuelmangano/react-native-chessboard#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "chess.js": "^1.0.0"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "^11.0.0",
    "@react-native-community/eslint-config": "^2.0.0",
    "@shopify/react-native-skia": "2.4.18",
    "@types/jest": "^26.0.0",
    "@types/react": "~19.2.10",
    "@types/react-test-renderer": "^19.1.0",
    "commitlint": "^11.0.0",
    "eslint": "^7.2.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-prettier": "^3.1.3",
    "husky": "^6.0.0",
    "jest": "29",
    "pod-install": "^0.1.0",
    "prettier": "^2.0.5",
    "react": "19.2.0",
    "react-native": "0.83.6",
    "react-native-builder-bob": "^0.18.0",
    "react-native-gesture-handler": "~2.30.0",
    "react-native-reanimated": "4.2.1",
    "react-native-worklets": "0.7.4",
    "react-test-renderer": "^19.2.6",
    "sharp": "^0.34.5",
    "ts-jest": "^29.4.9",
    "typescript": "~5.9.2"
  },
  "peerDependencies": {
    "@shopify/react-native-skia": ">= 1.0.0",
    "react": ">= 18.0.0",
    "react-native": ">= 0.71.0",
    "react-native-gesture-handler": ">= 2.14.0",
    "react-native-reanimated": ">= 3.6.0",
    "react-native-worklets": ">= 0.3.0"
  },
  "resolutions": {
    "@types/react": "19.2.10"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@react-native-community",
      "prettier"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "es5",
          "useTabs": false
        }
      ]
    },
    "overrides": [
      {
        "files": [
          "*.ts",
          "*.tsx"
        ],
        "rules": {
          "no-undef": "off"
        }
      }
    ]
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/",
    "example/",
    "scripts/",
    "coverage/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
