{
  "name": "@substrate-system/webauthn-keys",
  "version": "0.1.8",
  "description": "Use ECC keys with the webauthn API",
  "type": "module",
  "directories": {
    "doc": "docs",
    "example": "example"
  },
  "main": "dist/index.js",
  "files": [
    "./dist/*"
  ],
  "types": "./dist/index.d.ts",
  "scripts": {
    "lint": "eslint \"./**/*.{ts,js}\"",
    "test": "vitest",
    "test:ci": "vitest --run",
    "build-types": "tsc --emitDeclarationOnly --project tsconfig.build.json --outDir dist",
    "build-example": "mkdir -p ./public && rm -rf ./public/* && VITE_DEBUG_MODE=staging vite --mode staging --base=\"/webauthn-keys\" build",
    "build-docs": "typedoc ./src/index.ts",
    "build": "mkdir -p ./dist && rm -rf ./dist/* && esbuild ./build.ts | node --input-type=module",
    "start": "vite",
    "preversion": "npm run lint",
    "toc": "markdown-toc --maxdepth 3 -i README.md",
    "version": "npm run toc && auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md README.md",
    "postversion": "git push --follow-tags && npm publish",
    "prepublishOnly": "npm run build"
  },
  "exports": {
    ".": "./dist/index.js",
    "./types": "./dist/types.js",
    "./util": "./dist/util.js",
    "./min": "./dist/index.min.js",
    "./*": [
      "./dist/*.js",
      "./dist/*"
    ]
  },
  "dependencies": {
    "@substrate-system/asn1": "^0.0.7",
    "cborg": "^4.2.3",
    "idb-keyval": "^6.2.1",
    "libsodium": "^0.7.15",
    "libsodium-wrappers": "^0.7.15"
  },
  "devDependencies": {
    "@preact/preset-vite": "^2.10.2",
    "@preact/signals": "^2.0.1",
    "@substrate-system/css-normalize": "^0.0.13",
    "@substrate-system/debug": "^0.9.30",
    "@substrate-system/util": "^0.1.21",
    "@types/libsodium-wrappers": "^0.7.14",
    "@typescript-eslint/eslint-plugin": "^8.24.0",
    "@typescript-eslint/parser": "^8.24.0",
    "auto-changelog": "^2.4.0",
    "esbuild": "^0.25.0",
    "eslint": "^8.57.0",
    "eslint-config-standard": "^17.1.0",
    "globby": "^15.0.0",
    "htm": "^3.1.1",
    "jsdom": "^27.0.0",
    "markdown-toc": "^1.2.0",
    "npm-run-all": "^4.1.5",
    "postcss-nesting": "^13.0.1",
    "preact": "^10.25.4",
    "typedoc": "^0.28.1",
    "typescript": "^5.4.5",
    "vite": "^7.1.10",
    "vitest": "^3.0.5"
  },
  "author": "nichoth <nichoth@nichoth.com> (https://nichoth.com)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/substrate-system/webauthn-keys.git"
  },
  "keywords": [
    "webauthn",
    "keys",
    "crypto"
  ],
  "bugs": {
    "url": "https://github.com/substrate-system/webauthn-keys/issues"
  },
  "homepage": "https://github.com/substrate-system/webauthn-keys",
  "license": "SEE LICENSE IN LICENSE"
}
