{
  "name": "next-validate-link",
  "version": "1.5.2",
  "description": "An utility to validate links in markdown file",
  "keywords": [
    "NextJs",
    "Docs",
    "fumadocs",
    "markdown"
  ],
  "homepage": "https://next-validate-link.vercel.app",
  "repository": "github:fuma-nama/next-validate-link",
  "license": "MIT",
  "author": "Fuma Nama",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/*"
  ],
  "dependencies": {
    "fast-glob": "^3.3.3",
    "gray-matter": "^4.0.3",
    "picocolors": "^1.1.1",
    "remark": "^15.0.1",
    "remark-gfm": "^4.0.1",
    "unist-util-visit": "^5.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@changesets/cli": "^2.27.10",
    "@types/node": "22.13.8",
    "prettier": "^3.3.3",
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "vitest": "^3.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "clean": "rimraf dist",
    "dev": "tsup --watch",
    "lint": "biome lint ./src ./test",
    "test": "vitest",
    "types:check": "tsc --noEmit",
    "lint:prettier": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
    "prettier": "prettier --cache --write --list-different --ignore-path .gitignore --ignore-path .prettierignore .",
    "release": "pnpm run build && changeset publish",
    "version": "changeset version && pnpm install --lockfile-only"
  }
}