{
  "name": "permix",
  "displayName": "Permix",
  "type": "module",
  "version": "3.5.0",
  "private": false,
  "description": "Permix is a lightweight, framework-agnostic, type-safe permissions management library for JavaScript applications on the client and server sides.",
  "author": "Valerii Strilets",
  "license": "MIT",
  "funding": "https://github.com/sponsors/letstri",
  "homepage": "https://permix.letstri.dev",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/letstri/permix.git",
    "directory": "permix"
  },
  "bugs": {
    "url": "https://github.com/letstri/permix/issues"
  },
  "keywords": [
    "permissions",
    "authorization",
    "acl",
    "access-control",
    "typescript",
    "react",
    "vue",
    "type-safe",
    "rbac",
    "security",
    "permissions-management",
    "frontend",
    "javascript"
  ],
  "exports": {
    ".": {
      "types": "./dist/core/index.d.ts",
      "import": "./dist/core/index.mjs"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "import": "./dist/react/index.mjs"
    },
    "./vue": {
      "types": "./dist/vue/index.d.ts",
      "import": "./dist/vue/index.mjs"
    },
    "./trpc": {
      "types": "./dist/trpc/index.d.ts",
      "import": "./dist/trpc/index.mjs"
    },
    "./orpc": {
      "types": "./dist/orpc/index.d.ts",
      "import": "./dist/orpc/index.mjs"
    },
    "./express": {
      "types": "./dist/express/index.d.ts",
      "import": "./dist/express/index.mjs"
    },
    "./hono": {
      "types": "./dist/hono/index.d.ts",
      "import": "./dist/hono/index.mjs"
    },
    "./node": {
      "types": "./dist/node/index.d.ts",
      "import": "./dist/node/index.mjs"
    },
    "./elysia": {
      "types": "./dist/elysia/index.d.ts",
      "import": "./dist/elysia/index.mjs"
    },
    "./fastify": {
      "types": "./dist/fastify/index.d.ts",
      "import": "./dist/fastify/index.mjs"
    },
    "./solid": {
      "types": "./dist/solid/index.d.ts",
      "import": "./dist/solid/index.mjs"
    }
  },
  "main": "./dist/core/index.mjs",
  "types": "./dist/core/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18"
  },
  "peerDependencies": {
    "@orpc/server": ">=0",
    "@trpc/server": ">=10",
    "elysia": ">=1",
    "express": ">=4",
    "fastify": ">=5",
    "fastify-plugin": ">=5",
    "hono": ">=4",
    "react": ">=18",
    "solid-js": ">=1",
    "vue": ">=3"
  },
  "peerDependenciesMeta": {
    "@orpc/server": {
      "optional": true
    },
    "@trpc/server": {
      "optional": true
    },
    "elysia": {
      "optional": true
    },
    "express": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "fastify-plugin": {
      "optional": true
    },
    "hono": {
      "optional": true
    },
    "react": {
      "optional": true
    },
    "solid-js": {
      "optional": true
    },
    "vue": {
      "optional": true
    }
  },
  "devDependencies": {
    "@babel/preset-react": "^7.27.1",
    "@babel/preset-typescript": "^7.27.1",
    "@rollup/plugin-babel": "^6.0.4",
    "@solidjs/testing-library": "^0.8.10",
    "@testing-library/jest-dom": "^6.6.4",
    "@testing-library/react": "^16.3.0",
    "@types/express": "^5.0.3",
    "@types/node": "^24.1.0",
    "@types/react": "^19.1.9",
    "@types/supertest": "^6.0.3",
    "@vitejs/plugin-react": "^4.7.0",
    "@vitest/coverage-v8": "^3.2.4",
    "@vue/test-utils": "^2.4.6",
    "babel-preset-solid": "^1.9.6",
    "happy-dom": "^18.0.1",
    "supertest": "^7.1.4",
    "typescript": "^5.9.2",
    "unbuild": "^3.6.0",
    "vite-plugin-solid": "^2.11.8",
    "vitest": "^3.2.4",
    "vue": "^3.5.17",
    "zod": "^4.0.14"
  },
  "scripts": {
    "build": "unbuild",
    "test": "vitest run",
    "check-types": "tsc --build",
    "scripts:copy-readme": "node ./scripts/copy-readme.js"
  }
}