{
  "name": "start-authjs",
  "version": "1.0.2",
  "description": "Auth.js integration for TanStack Start",
  "author": "Birk Skyum",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/birkskyum/start-authjs.git",
    "directory": "packages/start-authjs"
  },
  "homepage": "https://github.com/birkskyum/start-authjs",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/birkskyum"
  },
  "keywords": [
    "tanstack",
    "solid-start",
    "start",
    "auth",
    "authjs",
    "authentication",
    "auth.js"
  ],
  "type": "module",
  "types": "dist/esm/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "src"
  ],
  "engines": {
    "node": ">=22.12.0"
  },
  "dependencies": {
    "@auth/core": "^0.41.1",
    "set-cookie-parser": "^2.6.0"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.1",
    "@tanstack/config": "^0.22.1",
    "@types/set-cookie-parser": "^2.4.9",
    "oxlint": "^1.30.0",
    "publint": "^0.3.12",
    "vite": "^7.2.4",
    "vitest": "^4.0.13"
  },
  "peerDependencies": {
    "@auth/core": ">=0.41.1"
  },
  "scripts": {
    "clean": "rimraf ./dist && rimraf ./coverage",
    "test": "pnpm test:unit && pnpm test:lint && pnpm test:types && pnpm test:build",
    "test:unit": "vitest run",
    "test:lint": "oxlint ./src --ignore-pattern '*.test.ts'",
    "test:types": "tsc --noEmit",
    "test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
    "build": "vite build"
  }
}