{
  "name": "supabase-oauth-popup",
  "version": "1.0.0",
  "description": "Ensure a Supabase session via OAuth in a popup",
  "keywords": [
    "supabase",
    "oauth",
    "auth",
    "login",
    "popup",
    "browser",
    "session"
  ],
  "license": "MIT",
  "author": "Anand S <root.node@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/sanand0/supabase-oauth-popup.git"
  },
  "homepage": "https://github.com/sanand0/supabase-oauth-popup#readme",
  "bugs": {
    "url": "https://github.com/sanand0/supabase-oauth-popup/issues"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "peerDependencies": {
    "@supabase/supabase-js": "^2.0.0"
  },
  "devDependencies": {
    "@supabase/supabase-js": "^2.75.0",
    "@vitest/coverage-v8": "^3.2.4",
    "jsdom": "^27.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.6.0",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsup index.ts --dts --format esm,cjs --minify --sourcemap",
    "lint:oxlint": "npx -y oxlint --fix",
    "lint:js-md": "dprint fmt -c https://raw.githubusercontent.com/sanand0/scripts/refs/heads/main/dprint.jsonc",
    "lint": "npm run lint:oxlint && npm run lint:js-md",
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "prepublishOnly": "npm run clean && npm run lint && npm run build && npm test"
  },
  "publishConfig": {
    "access": "public"
  }
}
