{
  "name": "@theqrl/mldsa87",
  "version": "2.2.0",
  "description": "ML-DSA-87 cryptography",
  "keywords": [
    "ml-dsa",
    "post-quantum",
    "cryptography"
  ],
  "author": "QRL contributors <info@theqrl.org> (https://theqrl.org)",
  "homepage": "https://github.com/theQRL/qrypto.js#readme",
  "license": "MIT",
  "main": "dist/cjs/mldsa87.js",
  "module": "dist/mjs/mldsa87.js",
  "types": "src/index.d.ts",
  "directories": {
    "lib": "src",
    "test": "test"
  },
  "files": [
    "dist",
    "src/index.d.ts",
    "LICENSE",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/theQRL/qrypto.js.git"
  },
  "scripts": {
    "test": "../../node_modules/mocha/bin/mocha.js --require ../../scripts/node-test-setup.cjs --timeout 10000",
    "test:browser": "playwright test",
    "build": "rollup -c && ./fixup",
    "coverage": "c8 npm run test",
    "report-coverage": "c8 --reporter=text-lcov npm run test > coverage.lcov"
  },
  "bugs": {
    "url": "https://github.com/theQRL/qrypto.js/issues"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/mjs/mldsa87.d.mts",
        "default": "./dist/mjs/mldsa87.js"
      },
      "require": {
        "types": "./dist/cjs/mldsa87.d.cts",
        "default": "./dist/cjs/mldsa87.js"
      }
    }
  },
  "type": "module",
  "engines": {
    "node": ">=20.19.0"
  },
  "devDependencies": {
    "@eslint/js": "10.0.1",
    "@rollup/plugin-node-resolve": "16.0.3",
    "c8": "12.0.0",
    "chai": "6.2.2",
    "eslint": "10.9.1",
    "eslint-config-prettier": "10.1.8",
    "eslint-plugin-import-x": "4.17.1",
    "eslint-plugin-prettier": "5.5.6",
    "globals": "17.11.0",
    "minimatch": "10.2.6",
    "mocha": "11.8.0",
    "prettier": "3.9.6",
    "rollup": "4.63.1",
    "serialize-javascript": "7.1.1",
    "tar": "7.5.22"
  },
  "dependencies": {
    "@noble/hashes": "2.4.0"
  },
  "c8": {
    "include": [
      "src/**"
    ],
    "exclude": [
      "**/dist/**",
      "**/test/**",
      "**/browser-tests/**",
      "**/*.d.ts"
    ],
    "all": true
  }
}
