{
  "name": "@zkorum/keystore-idb",
  "version": "0.18.1",
  "description": "In-browser key management with IndexedDB and the Web Crypto API",
  "keywords": [],
  "type": "module",
  "main": "lib/index.js",
  "exports": {
    ".": "./lib/index.js",
    "./lib/*": "./lib/*",
    "./*": "./lib/*",
    "./package.json": "./package.json"
  },
  "types": "lib/index.d.ts",
  "typesVersions": {
    "*": {
      "lib/index.d.ts": [
        "lib/index.d.ts"
      ],
      "lib/*": [
        "lib/*"
      ],
      "*": [
        "lib/*"
      ]
    }
  },
  "files": [
    "lib",
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE",
    "package.json",
    "!*.test.ts",
    "docs"
  ],
  "author": "Daniel Holmgren <daniel@fission.codes>",
  "repository": {
    "type": "git",
    "url": "https://github.com/fission-suite/keystore-idb"
  },
  "license": "Apache-2.0",
  "engines": {
    "node": ">=10.21.0"
  },
  "scripts": {
    "lint": "yarn eslint src/**/*.ts test/**/*.ts",
    "prebuild": "rimraf dist",
    "build": "tsc && yarn run build:minified",
    "build:minified": "node scripts/build-minified.js",
    "start": "tsc -w",
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watch",
    "test:prod": "npm run lint && npm run test -- --no-cache",
    "prepare": "yarn build",
    "publish-dry": "npm publish --dry-run",
    "publish-alpha": "npm publish --tag alpha",
    "publish-latest": "npm publish --tag latest"
  },
  "devDependencies": {
    "@types/jest": "^26.0.0",
    "@types/node": "^16.9.1",
    "@typescript-eslint/eslint-plugin": "^4.31.0",
    "@typescript-eslint/parser": "^4.31.0",
    "esbuild": "^0.12.27",
    "eslint": "^7.32.0",
    "jest": "^26.0.0",
    "jest-config": "^26.0.0",
    "jest-ts-webcompat-resolver": "^1.0.0",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.0.0",
    "ts-node": "^10.2.1",
    "typescript": "^4.4.2"
  },
  "dependencies": {
    "localforage": "^1.10.0",
    "one-webcrypto": "^1.0.3",
    "uint8arrays": "^3.0.0"
  }
}
