{
  "name": "nuxt-mongoose",
  "type": "module",
  "version": "1.1.2",
  "private": false,
  "description": "Nuxt 3 module for MongoDB with Mongoose",
  "license": "MIT",
  "funding": "https://github.com/sponsors/arashsheyda",
  "homepage": "https://docs.arashsheyda.me/nuxt-mongoose",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/arashsheyda/nuxt-mongoose"
  },
  "bugs": {
    "url": "https://github.com/arashsheyda/nuxt-mongoose/issues"
  },
  "keywords": [
    "nuxt",
    "mongoose",
    "mongodb",
    "devtools"
  ],
  "exports": {
    ".": {
      "types": "./dist/types.d.mts",
      "import": "./dist/module.mjs"
    }
  },
  "build": {
    "externals": [
      "ofetch"
    ]
  },
  "main": "./dist/module.mjs",
  "typesVersions": {
    "*": {
      ".": [
        "./dist/types.d.mts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@nuxt/devtools-kit": "^3.1.1",
    "@nuxt/kit": "^4.2.2",
    "@nuxt/ui": "^4.3.0",
    "@vueuse/core": "^14.1.0",
    "birpc": "^4.0.0",
    "defu": "^6.1.4",
    "fs-extra": "^11.2.0",
    "mongoose": "^9.0.2",
    "ofetch": "^1.3.3",
    "pathe": "^2.0.3",
    "pluralize": "^8.0.0",
    "sirv": "^3.0.2"
  },
  "devDependencies": {
    "@nuxt/eslint-config": "^1.12.1",
    "@nuxt/module-builder": "^1.0.2",
    "@nuxt/test-utils": "^3.21.0",
    "@types/fs-extra": "^11.0.4",
    "@types/pluralize": "^0.0.33",
    "changelogen": "^0.6.2",
    "eslint": "^9.39.1",
    "nuxt": "^4.2.2",
    "sass": "^1.97.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.16",
    "vue-tsc": "^3.1.8"
  },
  "scripts": {
    "build": "nuxt-module-build build",
    "build:client": "nuxi generate client",
    "dev": "nuxi dev playground",
    "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare client && nuxi prepare playground",
    "dev:client": "nuxi dev client --port 3300",
    "preview": "pnpm prepack && pnpm dev",
    "release": "pnpm run lint && pnpm run build && changelogen --release && pnpm publish",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
  }
}