{
  "name": "@web3-storage/access",
  "version": "17.0.0",
  "description": "w3access client",
  "homepage": "https://github.com/web3-storage/w3-protocol/tree/main/packages/access-client",
  "repository": {
    "type": "git",
    "url": "https://github.com/web3-storage/w3-protocol.git",
    "directory": "packages/access-client"
  },
  "author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
  "license": "(Apache-2.0 OR MIT)",
  "type": "module",
  "types": "dist/src/index.d.ts",
  "main": "src/index.js",
  "scripts": {
    "attw": "attw --pack .",
    "lint": "tsc --build && eslint '**/*.{js,ts}' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
    "build": "tsc --build",
    "check": "tsc --build",
    "test": "pnpm -r run build && npm run test:node && npm run test:browser",
    "test:node": "mocha 'test/**/!(*.browser).test.js' -n experimental-vm-modules -n no-warnings",
    "test:browser": "playwright-test 'test/**/!(*.node).test.js'",
    "testw": "watch 'pnpm test' src test --interval 1",
    "rc": "npm version prerelease --preid rc"
  },
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js"
    },
    "./agent": {
      "types": "./dist/src/agent.d.ts",
      "import": "./dist/src/agent.js"
    },
    "./space": {
      "types": "./dist/src/space.d.ts",
      "import": "./dist/src/space.js"
    },
    "./provider": {
      "types": "./dist/src/provider.d.ts",
      "import": "./dist/src/provider.js"
    },
    "./access": {
      "types": "./dist/src/access.d.ts",
      "import": "./dist/src/access.js"
    },
    "./encoding": {
      "types": "./dist/src/encoding.d.ts",
      "import": "./dist/src/encoding.js"
    },
    "./types": {
      "types": "./dist/src/types.d.ts",
      "import": "./dist/src/types.js"
    },
    "./drivers/*": {
      "types": "./dist/src/drivers/*.d.ts",
      "import": "./dist/src/drivers/*.js"
    },
    "./stores/*": {
      "types": "./dist/src/stores/*.d.ts",
      "import": "./dist/src/stores/*.js"
    }
  },
  "typesVersions": {
    "*": {
      "agent": [
        "dist/src/agent"
      ],
      "space": [
        "dist/src/space"
      ],
      "access": [
        "dist/src/access"
      ],
      "provider": [
        "dist/src/provider"
      ],
      "types": [
        "dist/src/types"
      ],
      "drivers/*": [
        "dist/src/drivers/*"
      ],
      "stores/*": [
        "dist/src/stores/*"
      ],
      "encoding": [
        "dist/src/encoding"
      ]
    }
  },
  "files": [
    "dist/src/**/*.js",
    "dist/src/**/*.js.map",
    "dist/src/**/*.d.ts",
    "dist/src/**/*.d.ts.map"
  ],
  "dependencies": {
    "@ipld/car": "^5.1.1",
    "@ipld/dag-ucan": "^3.4.0",
    "@ucanto/client": "^9.0.0",
    "@ucanto/core": "^9.0.0",
    "@ucanto/interface": "^9.0.0",
    "@ucanto/principal": "^9.0.0",
    "@ucanto/transport": "^9.0.0",
    "@ucanto/validator": "^9.0.0",
    "@web3-storage/capabilities": "workspace:^",
    "@web3-storage/did-mailto": "workspace:^",
    "bigint-mod-arith": "^3.1.2",
    "conf": "11.0.2",
    "multiformats": "^12.1.2",
    "one-webcrypto": "git://github.com/web3-storage/one-webcrypto",
    "p-defer": "^4.0.0",
    "type-fest": "^3.3.0",
    "uint8arrays": "^4.0.6",
    "@scure/bip39": "^1.2.1"
  },
  "devDependencies": {
    "@web3-storage/eslint-config-w3up": "workspace:^",
    "@types/assert": "^1.5.6",
    "@types/inquirer": "^9.0.4",
    "@types/mocha": "^10.0.1",
    "@types/node": "^20.8.4",
    "@types/sinon": "^10.0.19",
    "@types/varint": "^6.0.1",
    "@types/ws": "^8.5.4",
    "@ucanto/server": "^9.0.1",
    "assert": "^2.0.0",
    "mocha": "^10.2.0",
    "playwright-test": "^12.3.4",
    "sinon": "^15.0.3",
    "typescript": "5.2.2",
    "watch": "^1.0.2"
  },
  "eslintConfig": {
    "extends": [
      "@web3-storage/eslint-config-w3up"
    ],
    "parserOptions": {
      "project": "./tsconfig.json"
    },
    "env": {
      "browser": true,
      "es2022": true,
      "mocha": true
    },
    "ignorePatterns": [
      "dist",
      "src/types.js"
    ]
  },
  "depcheck": {
    "specials": [
      "bin"
    ],
    "ignores": [
      "@types/*",
      "assert",
      "@web3-storage/eslint-config-w3up"
    ]
  }
}
