{
  "name": "nuxt-calendar",
  "version": "0.1.0-beta.8",
  "publishConfig": {
    "access": "public"
  },
  "description": "A fully customizable, strongly-typed calendar module for Nuxt with i18n, timezone support, .ics export/import.",
  "keywords": [
    "nuxt",
    "nuxt-module",
    "calendar",
    "ics",
    "ical",
    "events",
    "scheduling",
    "typescript",
    "i18n",
    "timezone",
    "nuxthub",
    "database"
  ],
  "author": {
    "name": "Shiftesc",
    "url": "https://github.com/dennisadriaans"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dennisadriaans/nuxtcalendar.com"
  },
  "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"
  ],
  "dependencies": {
    "@nuxt/kit": "^4.2.1",
    "@nuxthub/core": "^0.10.3",
    "clsx": "^2.1.1",
    "date-fns": "^4.1.0",
    "date-fns-tz": "^3.2.0",
    "defu": "^6.1.4",
    "ics": "^3.8.1",
    "perfect-debounce": "^2.0.0",
    "tailwind-merge": "^3.5.0"
  },
  "peerDependencies": {
    "@nuxt/ui": "^4.1.0"
  },
  "devDependencies": {
    "@nuxt/devtools": "^3.1.1",
    "@nuxt/eslint-config": "^1.11.0",
    "@nuxt/module-builder": "^1.0.2",
    "@nuxt/schema": "^4.2.1",
    "@nuxt/test-utils": "^3.20.1",
    "@types/node": "latest",
    "@vue/test-utils": "^2.4.6",
    "changelogen": "^0.6.2",
    "eslint": "^9.39.1",
    "happy-dom": "^20.0.11",
    "nuxt": "^4.2.1",
    "typescript": "~5.9.3",
    "vitest": "^4.0.14",
    "vue-tsc": "^3.1.5"
  },
  "scripts": {
    "dev": "pnpm 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",
    "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
    "lint": "eslint .",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
  }
}