{
  "name": "@verdaccio/plugin-verifier",
  "version": "1.0.0-next-9.16",
  "description": "Tool to verify that a Verdaccio plugin can be loaded and passes sanity checks",
  "type": "module",
  "main": "./build/index.js",
  "types": "build/index.d.ts",
  "bin": {
    "verdaccio-plugin-verifier": "./bin/verdaccio-plugin-verifier"
  },
  "author": {
    "name": "Juan Picado",
    "email": "juanpicado19@gmail.com"
  },
  "repository": {
    "type": "https",
    "url": "https://github.com/verdaccio/verdaccio",
    "directory": "packages/tools/plugin-verifier"
  },
  "bugs": {
    "url": "https://github.com/verdaccio/verdaccio/issues"
  },
  "license": "MIT",
  "homepage": "https://verdaccio.org",
  "keywords": [
    "verdaccio",
    "plugin",
    "testing",
    "verification",
    "cli"
  ],
  "engines": {
    "node": ">=24"
  },
  "dependencies": {
    "@verdaccio/core": "9.0.0-next-9.20",
    "@verdaccio/loaders": "9.0.0-next-9.20",
    "@verdaccio/logger": "9.0.0-next-9.20",
    "clipanion": "4.0.0-rc.4",
    "debug": "4.4.3"
  },
  "devDependencies": {
    "rimraf": "6.1.3",
    "vite": "8.0.14",
    "vite-plugin-dts": "5.0.1",
    "vitest": "4.1.7"
  },
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/verdaccio"
  },
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "import": "./build/index.js"
    }
  },
  "scripts": {
    "clean": "rimraf ./build",
    "test": "vitest run",
    "watch": "vite build --watch",
    "build": "vite build"
  }
}