{
  "name": "@tayar/auth",
  "version": "0.0.8",
  "description": "Authentication Kit for React and Next.js",
  "author": {
    "name": "Sikka Software",
    "email": "contact@sikka.io",
    "url": "http://sikka.io"
  },
  "license": "MIT",
  "keywords": [
    "kit",
    "react",
    "next",
    "auth",
    "tayar"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sikka-software/tayar.git"
  },
  "bugs": {
    "url": "https://github.com/sikka-software/tayar/issues",
    "email": "tayar@sikka.io"
  },
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.js",
  "types": "./dist/types.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist/*"
  ],
  "dependencies": {
    "bcrypt": "^5.1.1",
    "jsonwebtoken": "^9.0.2",
    "next": "14.1.4",
    "react": "18.2.0"
  },
  "devDependencies": {
    "@types/bcrypt": "^5.0.2",
    "@types/jsonwebtoken": "^9.0.6",
    "@types/react": "^18.2.70",
    "tsup": "^8.0.2"
  },
  "scripts": {
    "build": "tsup",
    "clean": "rimraf ./dist",
    "dev": "tsup --watch",
    "test": "vitest run",
    "types": "tsup --dts-only",
    "types:check": "tsc --noEmit"
  }
}