{
  "name": "@nucypher/taco",
  "version": "0.5.0",
  "keywords": [
    "taco",
    "threshold",
    "access control"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/nucypher/taco-web"
  },
  "license": "GPL-3.0-only",
  "author": "NuCypher <dev@nucypher.com>",
  "exports": {
    ".": {
      "import": "./dist/es/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/es/index.js",
  "types": "./dist/cjs/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@nucypher/nucypher-core": "*",
    "ethers": "*",
    "semver": "^7.6.3",
    "zod": "*",
    "@nucypher/taco-auth": "0.2.0",
    "@nucypher/shared": "0.4.0"
  },
  "devDependencies": {
    "@types/semver": "^7.5.8",
    "@nucypher/test-utils": "0.0.0"
  },
  "engines": {
    "node": ">=18",
    "pnpm": ">=8.0.0"
  },
  "scripts": {
    "prebuild": "pnpm clean",
    "build": "pnpm build:module && pnpm build:cjs",
    "build:cjs": "tsc --build ./tsconfig.cjs.json --verbose",
    "build:module": "tsc --build ./tsconfig.es.json --verbose",
    "clean": "rm -rf dist",
    "exports:lint": "ts-unused-exports tsconfig.json --ignoreFiles src/index.ts",
    "lint": "eslint --ext .ts src test",
    "lint:fix": "pnpm lint --fix",
    "package-check": "package-check",
    "test": "vitest run",
    "type-check": "tsc --noEmit",
    "typedoc": "typedoc"
  }
}