{
  "name": "@shield-acl/react",
  "version": "2.0.0",
  "description": "Sistema ACL (Access Control List) inteligente e granular para aplicações React",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "keywords": [
    "react",
    "acl",
    "access-control",
    "permissions",
    "authorization",
    "security",
    "typescript",
    "granular-permissions"
  ],
  "author": "Anderson D. Rosa",
  "license": "MIT",
  "files": [
    "dist",
    "README.md"
  ],
  "peerDependencies": {
    "react": ">=18.0.0"
  },
  "devDependencies": {
    "@testing-library/dom": "^10.0.0",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.3.0",
    "@types/node": "^22.0.0",
    "@types/react": "^19.1.6",
    "@types/react-dom": "^19.0.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@vitest/coverage-v8": "^3.2.2",
    "@vitest/ui": "^3.2.2",
    "eslint": "^9.0.0",
    "jsdom": "^22.1.0",
    "prettier": "^3.5.3",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "tsup": "^7.2.0",
    "typescript": "^5.0.0",
    "vitest": "^3.2.2",
    "@shield-acl/core": "2.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/andersondrosa/shield-acl"
  },
  "bugs": {
    "url": "https://github.com/andersondrosa/shield-acl/issues"
  },
  "homepage": "https://github.com/andersondrosa/shield-acl#readme",
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\""
  }
}