{
  "name": "@nats-io/nkeys",
  "version": "2.0.3",
  "description": "A public-key signature system based on Ed25519 for the NATS ecosystem in javascript",
  "main": "lib/mod.js",
  "types": "lib/mod.d.ts",
  "files": [
    "lib/",
    "LICENSE",
    "README.md",
    "MAINTAINERS.md",
    "CODE-OF-CONDUCT.md"
  ],
  "scripts": {
    "init": "mkdir -p build",
    "clean": "rm -Rf build/ lib/ ./coverage",
    "real-clean": "npm run clean && rm -Rf node_modules",
    "fmt": "deno fmt src/ examples/ modules/ test/ node_test/",
    "cjs": "deno run --allow-all bin/cjs-fix-imports.ts -o build/ src/",
    "generate": "deno run -A bin/generate_version.ts && deno fmt",
    "stage": "npm run init && npm run generate && npm run cjs && tsc",
    "prepare": "npm run clean && npm run stage",
    "test-node": "cd node_test; node --test",
    "test-deno": "deno test -A test",
    "test": "npm run prepare && npm run check-package && npm run test-deno && npm run test-node",
    "doc": "rm -Rf docs && npm run stage && node_modules/.bin/typedoc --out docs/ && touch ./docs/.nojekyll",
    "bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
    "bump-release": "npm version patch --no-commit-hooks --no-git-tag-version",
    "check-package": "deno run --allow-all bin/check-bundle-version.ts"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nats-io/nkeys.js"
  },
  "keywords": [
    "nats",
    "Ed25519",
    "javascript"
  ],
  "author": "The NATS Authors",
  "license": "Apache-2.0",
  "dependencies": {
    "tweetnacl": "^1.0.3"
  },
  "devDependencies": {
    "@types/node": "^22.13.10",
    "typedoc": "^0.28.1",
    "typescript": "^5.8.2"
  }
}
