{
  "name": "vite-plugin-protobuf",
  "version": "0.0.31",
  "description": "Vite plugin that automatically compiles .proto files to TypeScript clients",
  "keywords": [
    "vite",
    "vite-plugin",
    "typescript"
  ],
  "homepage": "https://github.com/w4g1/vite-plugin-protobuf",
  "bugs": "https://github.com/W4G1/vite-plugin-protobuf/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/w4g1/vite-plugin-protobuf.git"
  },
  "license": "MIT",
  "author": "W4G1 <waltervdgiessen@gmail.com>",
  "type": "module",
  "exports": {
    ".": "./dist/index.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "scripts"
  ],
  "scripts": {
    "build": "tsup",
    "build:test": "tsup --sourcemap inline",
    "clean": "rimraf dist",
    "dev": "tsup --watch",
    "postinstall": "node ./scripts/postinstall.js"
  },
  "dependencies": {
    "chokidar": "^4.0.3",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3"
  },
  "devDependencies": {
    "@types/node": "^22.14.1",
    "tsup": "^8.3.6"
  },
  "peerDependencies": {
    "@protobuf-ts/plugin": "^2.9.6",
    "@protobuf-ts/protoc": "^2.9.6",
    "@protobuf-ts/runtime": "^2.9.6",
    "@protobuf-ts/runtime-rpc": "^2.9.6",
    "typescript": "*",
    "vite": "^5.3.5"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=14.16"
  }
}