{
  "name": "blake3-multihash",
  "version": "0.0.4",
  "description": "blake3 multihash",
  "license": "ISC",
  "keywords": [
    "blake3",
    "multihash",
    "multiformats"
  ],
  "type": "module",
  "main": "./src/lib.js",
  "files": [
    "src",
    "gen",
    "dist/src"
  ],
  "exports": {
    ".": {
      "types": "./dist/src/lib.js",
      "import": "./src/lib.js"
    },
    "./sync": {
      "types": "./dist/src/sync.js",
      "import": "./src/sync.js"
    },
    "./package.json": "./package.json"
  },
  "types": "./dist/src/lib.d.ts",
  "typesVersions": {
    "*": {
      ".": [
        "dist/src/lib.d.ts"
      ],
      "sync": [
        "dist/src/sync.d.ts"
      ]
    }
  },
  "c8": {
    "exclude": [
      "gen/**"
    ]
  },
  "devDependencies": {
    "@types/chai": "4.3.4",
    "@types/mocha": "10.0.1",
    "c8": "7.13.0",
    "chai": "4.3.7",
    "mocha": "10.2.0",
    "multiformats": "^11.0.2",
    "playwright-test": "8.2.0",
    "typescript": "4.9.5",
    "nyc": "^15.1.0"
  },
  "nyc": {
    "exclude": [
      "gen/**"
    ]
  },
  "scripts": {
    "gen": "node scripts/build.js",
    "check": "tsc --build",
    "build": "tsc --build",
    "test:web": "playwright-test test/**/*.spec.js --cov && nyc report",
    "test:node": "c8 --check-coverage --branches 100 --functions 100 --lines 100 mocha test/**/*.spec.js",
    "test": "c8 --check-coverage --branches 0 --functions 0 --lines 0 mocha test/**/*.spec.js"
  }
}