{
  "name": "stytch",
  "version": "14.0.0",
  "description": "A wrapper for the Stytch API",
  "types": "./types/lib/index.d.ts",
  "main": "./dist/index.js",
  "type": "commonjs",
  "exports": {
    "types": "./types/lib/index.d.ts",
    "require": "./dist/index.js",
    "default": "./dist/index.js"
  },
  "files": [
    "dist/**/*",
    "types/**/*"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/stytchauth/stytch-node.git"
  },
  "engines": {
    "node": ">= 18.0.0"
  },
  "scripts": {
    "build": "rm -rf dist types && babel lib --out-dir dist --extensions '.ts' && tsc --declaration --outDir types --emitDeclarationOnly",
    "format": "prettier --write .",
    "check-format": "prettier --check .",
    "lint": "eslint lib",
    "test": "jest",
    "test-packages": "./test-packages/test.sh"
  },
  "author": "Stytch",
  "bugs": {
    "url": "git://github.com/stytchauth/stytch-node/issues"
  },
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "^7.23.0",
    "@babel/core": "^7.23.0",
    "@babel/preset-env": "^7.22.20",
    "@babel/preset-typescript": "^7.23.0",
    "@types/jest": "^29.5.5",
    "@types/node": "^20.14.8",
    "@typescript-eslint/eslint-plugin": "^4.33.0",
    "@typescript-eslint/parser": "^4.33.0",
    "eslint": "^7.32.0",
    "jest": "^29.7.0",
    "prettier": "2.4.1",
    "ts-jest": "^29.1.1",
    "typescript": "^5.5.4"
  },
  "dependencies": {
    "jose": "^5.10.0",
    "undici": "^6.24.0"
  },
  "eslintConfig": {
    "extends": "airbnb",
    "env": {
      "commonjs": true,
      "node": true,
      "mocha": true
    },
    "rules": {
      "indent": [
        "error",
        4
      ],
      "no-underscore-dangle": 0,
      "strict": 0,
      "prefer-rest-params": 0
    }
  }
}
