{
  "name": "@vgpu/render",
  "version": "0.3.0",
  "description": "Render pipeline + render pass abstractions for vgpu.",
  "keywords": [
    "webgpu",
    "graphics",
    "rendering",
    "render",
    "pipeline",
    "render-pass"
  ],
  "homepage": "https://github.com/vercel-labs/vgpu#readme",
  "bugs": {
    "url": "https://github.com/vercel-labs/vgpu/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vercel-labs/vgpu.git",
    "directory": "packages/render"
  },
  "license": "MIT",
  "author": "Matias Gonzalez <matiasngf@hotmail.com>",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    "./inspect": {
      "types": "./dist/inspect/index.d.ts",
      "import": "./dist/inspect/index.js"
    },
    "./utils": {
      "types": "./dist/utils/index.d.ts",
      "import": "./dist/utils/index.js"
    },
    "./edit": {
      "types": "./dist/edit/index.d.ts",
      "import": "./dist/edit/index.js"
    },
    "./perf": {
      "types": "./dist/perf/index.d.ts",
      "import": "./dist/perf/index.js"
    }
  },
  "files": [
    "dist",
    "!dist/tsconfig.tsbuildinfo",
    "src/**/*.docs.md",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "wgpu-matrix": "^3.4.2",
    "@vgpu/core": "0.3.0"
  },
  "vgpuExportBundleAudiences": {
    "./inspect": "client",
    "./utils": "client",
    "./edit": "client",
    "./perf": "client"
  },
  "vgpuExportBundleBudgetsGzipBytes": {
    "./inspect": 2560,
    "./utils": 1024,
    "./edit": 12288,
    "./perf": 1536
  },
  "vgpuExportBundleBudgetNote": "Gzip ceilings use 512-byte granularity: each budget is the next 512-byte multiple strictly above the measured size. Regenerate with `pnpm bundle-check --update`. vgpuBundleAudience/vgpuExportBundleAudiences select the gate: \"client\" entries ship to browsers and fail on any byte over budget; \"tooling\" entries (loaders, Node runtime, CLI, package tarballs) only warn until growth passes vgpuBundleBudgetGrowthThreshold (default 5%). Tarballs measure published dist bytes with sourcemap sourcesContent stripped and *.docs.md excluded.",
  "scripts": {
    "build": "tsc -b",
    "typecheck": "tsc -b",
    "lint": "tsc -b --pretty false",
    "test": "cd ../.. && vitest run packages/render"
  }
}