{
  "name": "nuxt-umbu",
  "version": "0.0.9",
  "description": "Authentication module simple for Nuxt.js",
  "repository": "https://github.com/4sllan/nuxt-umbu",
  "author": "Aslan Gama <@4slan>",
  "keywords": [
    "Nuxt authentication",
    "Laravel Passport integration",
    "Nuxt authentication module",
    "Server-side authentication Nuxt",
    "Nuxt 2FA support",
    "Secure cookies authentication",
    "Nuxt httpOnly cookies",
    "OAuth authentication Nuxt"
  ],
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/types.d.mts",
      "import": "./dist/module.mjs"
    }
  },
  "main": "./dist/module.mjs",
  "typesVersions": {
    "*": {
      ".": [
        "./dist/types.d.mts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@nuxt/eslint-config": "^1.12.1",
    "@nuxt/module-builder": "^1.0.2",
    "@nuxt/schema": "^4.2.2",
    "@nuxt/test-utils": "^3.23.0",
    "@types/node": "^25.3.0",
    "@vitejs/plugin-vue": "^6.0.4",
    "changelogen": "^0.6.2",
    "eslint": "^9.39.2",
    "happy-dom": "^20.7.0",
    "nuxt": "^4.2.2",
    "prettier": "^3.7.4",
    "typescript": "^5.9.3",
    "vitest": "^3.2.4"
  },
  "dependencies": {
    "@nuxt/kit": "^4.2.2",
    "@vueuse/core": "^14.1.0",
    "defu": "^6.1.4",
    "h3": "^1.15.4",
    "ofetch": "^1.5.1",
    "unstorage": "^1.17.3"
  },
  "scripts": {
    "build": "nuxi build",
    "lint": "eslint . --fix",
    "typecheck": "nuxi prepare playground && tsc --noEmit",
    "postinstall": "nuxi prepare",
    "dev": "nuxi dev playground",
    "dev:passport": "nuxi dev playground -c nuxt.passport.config.ts",
    "dev:sanctum": "nuxi dev playground -c nuxt.sanctum.config.ts",
    "dev:prepare": "nuxt-module-build --stub",
    "test": "vitest run --reporter=verbose --silent=false",
    "test:watch": "vitest watch --reporter=verbose --silent=false",
    "test:debug": "vitest --inspect-brk --reporter=verbose --silent=false",
    "format": "prettier --write .",
    "format:check": "prettier --check ."
  }
}