{
  "name": "nuxt-link-checker",
  "type": "module",
  "version": "3.1.0",
  "description": "Find and magically fix links that may be negatively effecting your Nuxt sites SEO.",
  "author": {
    "name": "Harlan Wilton",
    "email": "harlan@harlanzw.com",
    "url": "https://harlanzw.com/"
  },
  "license": "MIT",
  "funding": "https://github.com/sponsors/harlan-zw",
  "homepage": "https://github.com/harlan-zw/nuxt-link-checker#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/harlan-zw/nuxt-link-checker.git"
  },
  "bugs": {
    "url": "https://github.com/harlan-zw/nuxt-link-checker/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/types.d.ts",
      "import": "./dist/module.mjs",
      "require": "./dist/module.cjs"
    }
  },
  "build": {
    "externals": [
      "ofetch",
      "std-env",
      "unstorage",
      "unstorage/drivers/fs"
    ]
  },
  "main": "./dist/module.cjs",
  "types": "./dist/types.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@nuxt/devtools-kit": "^1.3.9",
    "@nuxt/kit": "^3.12.4",
    "@vueuse/core": "^11.0.0-beta.2",
    "chalk": "^5.3.0",
    "cheerio": "1.0.0-rc.12",
    "diff": "^5.2.0",
    "fuse.js": "^7.0.0",
    "magic-string": "^0.30.10",
    "nuxt-site-config": "2.2.15",
    "nuxt-site-config-kit": "2.2.15",
    "pathe": "^1.1.2",
    "pkg-types": "^1.1.3",
    "radix3": "^1.1.2",
    "sirv": "^2.0.4",
    "site-config-stack": "^2.2.15",
    "ufo": "^1.5.4"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^2.23.2",
    "@nuxt/content": "^2.13.2",
    "@nuxt/devtools": "^1.3.9",
    "@nuxt/module-builder": "0.8.1",
    "@nuxt/test-utils": "^3.13.1",
    "@nuxt/ui": "^2.18.1",
    "@nuxtjs/eslint-config-typescript": "^12.1.0",
    "@nuxtjs/sitemap": "^5.3.5",
    "@types/diff": "^5.2.1",
    "bumpp": "^9.4.1",
    "eslint": "9.7.0",
    "execa": "^9.3.0",
    "nuxt": "^3.12.4",
    "vitest": "^2.0.4"
  },
  "resolutions": {
    "nuxt-link-checker": "workspace:*"
  },
  "scripts": {
    "build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && npm run client:build",
    "client:build": "nuxi generate client",
    "client:dev": "nuxi dev client --port 3030",
    "dev": "npm run play:dev",
    "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare client && nuxi prepare playground",
    "play:dev": "nuxi dev playground",
    "play:prod": "npm run build && nuxi dev playground",
    "release": "pnpm build && bumpp && pnpm -r publish",
    "lint": "eslint . --fix",
    "test": "vitest run",
    "test:types": "npx nuxi typecheck",
    "test:watch": "vitest watch"
  }
}