{
  "name": "@crazydos/nuxt-msw",
  "version": "1.0.2",
  "description": "Nuxt module integration for MSW (Mock Service Worker)",
  "author": {
    "name": "shunnNet",
    "email": "wendell20904102@gmail.com",
    "url": "https://github.com/shunnNet"
  },
  "repository": {
    "type": "github",
    "url": "https://github.com/shunnNet/nuxt-msw"
  },
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/types.d.ts",
      "import": "./dist/module.mjs",
      "require": "./dist/module.cjs"
    },
    "./test-utils": {
      "types": "./dist/runtime/test-utils.d.ts",
      "import": "./dist/runtime/test-utils.mjs"
    }
  },
  "main": "./dist/module.cjs",
  "types": "./dist/types.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@nuxt/kit": "^3.11.2"
  },
  "peerDependencies": {
    "msw": "^2.x"
  },
  "devDependencies": {
    "@nuxt/devtools": "^1.2.0",
    "@nuxt/eslint-config": "^0.3.10",
    "@nuxt/module-builder": "^0.6.0",
    "@nuxt/schema": "^3.11.2",
    "@nuxt/test-utils": "^3.12.1",
    "@playwright/test": "^1.44.0",
    "@types/node": "^20.12.11",
    "@vue/test-utils": "^2.4.6",
    "changelogen": "^0.5.5",
    "eslint": "^9.2.0",
    "h3": "^1.12.0",
    "happy-dom": "^14.12.3",
    "msw": "^2.3.0",
    "nuxt": "^3.11.2",
    "typescript": "latest",
    "vitest": "^1.6.0",
    "vitest-environment-nuxt": "^1.0.1",
    "vue-tsc": "^2.0.16",
    "ofetch": "^1.3.4",
    "unimport": "^3.7.1"
  },
  "msw": {
    "workerDirectory": [
      "playground/public"
    ]
  },
  "scripts": {
    "build": "sh scripts/build.sh",
    "dev": "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 build && 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",
    "test:pl": "playwright test"
  }
}