{
  "name": "nuxt-oidc-auth",
  "version": "1.0.0-beta.11",
  "private": false,
  "description": "OIDC authentication module for Nuxt SSR",
  "homepage": "https://github.com/itpropro/nuxt-oidc-auth#readme",
  "license": "MIT",
  "repository": "itpropro/nuxt-oidc-auth",
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/module.mjs",
  "exports": {
    ".": {
      "types": "./dist/types.d.mts",
      "import": "./dist/module.mjs"
    },
    "./package.json": "./package.json",
    "./runtime/*": "./dist/runtime/*"
  },
  "dependencies": {
    "@nuxt/devtools-kit": "^3.2.4",
    "@nuxt/devtools-ui-kit": "^3.2.4",
    "consola": "^3.4.2",
    "defu": "^6.1.7",
    "h3": "^1.15.11",
    "jose": "^6.2.2",
    "ofetch": "^1.5.1",
    "scule": "^1.3.0",
    "sirv": "^3.0.2",
    "ufo": "^1.6.3",
    "uncrypto": "^0.1.3",
    "undici": "^8.0.2",
    "undio": "^0.2.0"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^8.1.1",
    "@nuxt/devtools": "^3.2.4",
    "@nuxt/kit": "^4.4.2",
    "@nuxt/module-builder": "^1.0.2",
    "@nuxt/schema": "^4.4.2",
    "@nuxt/test-utils": "^4.0.2",
    "@playwright/test": "^1.59.1",
    "@types/node": "^25.5.2",
    "changelogen": "^0.6.2",
    "concurrently": "^9.2.1",
    "eslint": "^10.2.0",
    "eslint-plugin-oxlint": "^1.59.0",
    "nuxt": "^4.4.2",
    "oxfmt": "^0.44.0",
    "oxlint": "^1.59.0",
    "oxlint-tsgolint": "^0.20.0",
    "typescript": "5.6.3",
    "vitest": "^4.1.4",
    "vue-tsc": "^3.2.6"
  },
  "peerDependencies": {
    "undici": "^7.2.1"
  },
  "peerDependenciesMeta": {
    "undici": {
      "optional": true
    }
  },
  "scripts": {
    "client:build": "nuxi generate client",
    "client:dev": "nuxi dev client --port 3300",
    "dev:client": "concurrently \"nuxi dev client --port 3300\" \"nuxi dev playground\"",
    "dev": "nuxi dev playground",
    "dev:docs": "nuxi dev docs",
    "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare client",
    "release": "pnpm lint && pnpm prepack && changelogen --release && git push --follow-tags && pnpm publish --access=public",
    "lint": "pnpm lint:ox && pnpm lint:eslint",
    "lint:ox": "oxlint -c oxlint.json --type-aware --tsconfig tsconfig.json --report-unused-disable-directives .",
    "lint:eslint": "eslint --cache --cache-strategy content --cache-location node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern \"**/*.vue\"",
    "fmt": "oxfmt .",
    "fmt:check": "oxfmt --check .",
    "typecheck": "nuxt typecheck",
    "test": "vitest run --config test/vitest.config.ts --root .",
    "test:watch": "vitest watch --config test/vitest.config.ts --root .",
    "test:unit": "vitest run --config test/vitest.config.ts --root . test/unit/",
    "test:functional": "vitest run --config test/vitest.config.ts --root . test/functional/",
    "test:e2e": "playwright test --config playwright.config.ts",
    "test:e2e:oidc": "playwright test --config playwright.config.ts --grep 'Generic OIDC'",
    "test:check-env": "npx tsx test/setup/env-validator.ts --check"
  }
}