{
  "name": "@vavite/multibuild",
  "version": "5.1.0",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "dist/*.d.ts"
      ]
    }
  },
  "files": [
    "dist",
    "*.d.ts"
  ],
  "description": "Tool for orchestrating multiple Vite builds",
  "author": "Fatih Aygün <cyco130@gmail.com>",
  "repository": "github:cyco130/vavite",
  "license": "MIT",
  "peerDependencies": {
    "vite": "^2.8.1 || 3 || 4 || 5 || 6"
  },
  "devDependencies": {
    "@cyco130/eslint-config": "^5.0.1",
    "eslint": "^9.16.0",
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "vite": "^5.4.11"
  },
  "dependencies": {
    "@types/node": "^18.19.67",
    "cac": "^6.7.14",
    "picocolors": "^1.1.1"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "pnpm run test:typecheck && pnpm run test:lint && pnpm run test:package",
    "test:typecheck": "tsc -p tsconfig.json --noEmit",
    "test:lint": "eslint . --max-warnings 0 --ignore-pattern dist",
    "test:package": "publint --strict"
  }
}