{
  "name": "@ambitiondev/nuxt-cookiebot",
  "version": "4.0.0",
  "description": "Integrate Cookiebot with you Nuxt application",
  "keywords": [
    "cookiebot",
    "vue",
    "vue 3",
    "nuxt",
    "ambitiondev"
  ],
  "homepage": "https://vue-nuxt-cookiebot.netlify.app",
  "repository": {
    "type": "git",
    "url": "https://github.com/ambitiondev/cookiebot"
  },
  "author": {
    "name": "Berrie Nachtweh",
    "email": "info@ambitiondev.io",
    "url": "https://ambitiondev.io"
  },
  "license": "MIT",
  "type": "module",
  "main": "./dist/module.mjs",
  "exports": {
    ".": {
      "types": "./dist/types.d.mts",
      "import": "./dist/module.mjs"
    }
  },
  "typesVersions": {
    "*": {
      ".": [
        "./dist/types.d.mts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@nuxt/kit": "^4.5.0",
    "@nuxt/scripts": "^1.3.2",
    "@ambitiondev/cookiebot-common": "4.0.0"
  },
  "devDependencies": {
    "@nuxt/devtools": "4.0.0-alpha.7",
    "@nuxt/eslint": "1.16.0",
    "@nuxt/eslint-config": "^1.16.0",
    "@nuxt/module-builder": "^1.0.2",
    "@nuxt/schema": "^4.5.0",
    "@nuxt/test-utils": "^4.0.3",
    "@nuxtjs/i18n": "^10.5.0",
    "@playwright/test": "^1.61.1",
    "@vue/test-utils": "^2.4.11",
    "nuxt": "^4.5.0",
    "playwright-core": "^1.61.1",
    "vue-tsc": "^3.3.7"
  },
  "peerDependencies": {
    "@nuxtjs/i18n": "^9.0.0 || ^10.0.0"
  },
  "peerDependenciesMeta": {
    "@nuxtjs/i18n": {
      "optional": true
    }
  },
  "scripts": {
    "--- 🧪 Testing ---": "",
    "test": "vitest watch",
    "test:coverage": "vitest run",
    "test:types": "vue-tsc --noEmit && cd .playground && vue-tsc --noEmit",
    "--- 🎗️ Lint ---": "",
    "lint": "eslint src/*.ts",
    "--- 🤓 Developer Tools ---": "",
    "build": "nuxi generate && nuxt-module-build build",
    "dev": "npm run dev:prepare && nuxi dev .playground",
    "dev:build": "nuxi build .playground",
    "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare .playground",
    "test:prepare": "for dir in test/e2e/fixtures/*; do if [ -d \"$dir\" ]; then echo \"Preparing $dir\"; nuxi prepare \"$dir\"; fi; done"
  }
}