{
  "name": "@authsure/flow-client",
  "description": "Provides client authentication functions for use with the AuthSure Flow API",
  "version": "0.0.4",
  "type": "module",
  "author": "NR1E, Inc",
  "publishConfig": {
    "access": "public"
  },
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "https://github.com/nr1etech/authsure-flow-client-js.git"
  },
  "files": [
    "**"
  ],
  "devDependencies": {
    "@types/node": "^20.14.2",
    "@vitest/coverage-v8": "^1.6.0",
    "gts": "^5.3.1",
    "ts-node": "^10.9.2",
    "typedoc": "^0.25.13",
    "typescript": "~5.4.5",
    "vitest": "^1.6.0"
  },
  "dependencies": {
    "@nr1e/commons": "^0.1.2",
    "axios": "^1.7.2",
    "jose": "^5.4.0",
    "tslib": "^2.6.3"
  },
  "peerDependencies": {
    "@nr1e/commons": "^0.1.2",
    "axios": ">=1.7.2",
    "jose": ">=5.4.0"
  },
  "exports": {
    ".": {
      "import": "./index.js",
      "types": "./index.d.ts"
    }
  },
  "scripts": {
    "build": "tsc",
    "postbuild": "prettier --check . && gts lint && cp package.json dist",
    "watch": "tsc -w",
    "test": "vitest run --coverage",
    "lint": "gts lint",
    "clean": "rm -rf dist && rm -rf site && rm -rf coverage",
    "fix": "gts fix",
    "makepretty": "prettier --write .",
    "site": "typedoc --out site \"src/**/*.ts\" --exclude \"src/**/*.test.ts\""
  }
}