{
  "name": "@volverjs/auth-vue",
  "type": "module",
  "version": "0.0.3",
  "description": "Simple OAuth 2 / OpenID Connect plugin for Vue 3",
  "author": "8 Wave S.r.l.",
  "license": "MIT",
  "homepage": "https://github.com/volverjs/auth-vue",
  "repository": {
    "type": "git",
    "url": "https://github.com/volverjs/auth-vue"
  },
  "bugs": {
    "url": "https://github.com/volverjs/auth-vue/issues"
  },
  "keywords": [
    "oauth",
    "openid",
    "vue3",
    "storage"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./src/*": "./src/*",
    "./dist/*": "./dist/*",
    "./storage": {
      "types": "./dist/Storage.d.ts",
      "import": "./dist/Storage.js"
    },
    "./local-storage": {
      "types": "./dist/LocalStorage.d.ts",
      "import": "./dist/LocalStorage.js"
    },
    "./session-storage": {
      "types": "./dist/SessionStorage.d.ts",
      "import": "./dist/SessionStorage.js"
    },
    "./oauth-client": {
      "types": "./dist/OauthClient.d.ts",
      "import": "./dist/OauthClient.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "dist/index.d.ts"
      ],
      "storage": [
        "dist/Storage.d.ts"
      ],
      "local-storage": [
        "dist/LocalStorage.d.ts"
      ],
      "session-storage": [
        "dist/SessionStorage.d.ts"
      ],
      "oauth-client": [
        "dist/OauthClient.d.ts"
      ]
    }
  },
  "files": [
    "*.d.ts",
    "dist",
    "src"
  ],
  "engines": {
    "node": ">= 16.x"
  },
  "peerDependencies": {
    "vue": "^3.5.x"
  },
  "dependencies": {
    "oauth4webapi": "^2.17.0"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^5.4.1",
    "@nabla/vite-plugin-eslint": "^2.0.6",
    "copy": "^0.3.2",
    "eslint": "^9.36.0",
    "happy-dom": "^19.0.2",
    "node-fetch": "^3.3.2",
    "typescript": "^5.9.3",
    "vite": "^7.1.8",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^3.2.4",
    "vitest-fetch-mock": "^0.4.5",
    "vue": "^3.5.22",
    "vue-tsc": "^3.1.0"
  },
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "type-check": "tsc --noEmit",
    "dev": "vite build --watch",
    "build": "vite build",
    "test": "npm run test-vitest",
    "test-vitest": "vitest run",
    "test-vitest-watch": "vitest",
    "credits": "npx @opengovsg/credits-generator"
  }
}