{
  "name": "@zushah/wasmgpu",
  "version": "0.7.0",
  "author": "Zushah",
  "license": "MPL-2.0",
  "description": "WebGPU × WebAssembly rendering and computing engine for scientific workloads in the browser.",
  "main": "./dist/WasmGPU.js",
  "module": "./dist/WasmGPU.js",
  "files": [
    "./CHANGELOG.md",
    "./dist/",
    "./LICENSE.md",
    "./package.json",
    "./README.md"
  ],
  "devDependencies": {
    "@types/node": "^25.2",
    "@webgpu/types": "^0.1.69",
    "esbuild": "^0.27.2",
    "typescript": "^5.9.3",
    "webgpu": "^0.3.8"
  },
  "scripts": {
    "build:rs": "node ./scripts/build-rust-wasm.js",
    "build:ts": "tsc --noEmit --project ./tsconfig.json",
    "build:es": "node ./esbuild.config.js",
    "build": "npm run build:rs && npm run build:ts && npm run build:es",
    "test": "node --test ./test/*.test.js",
    "dev": "npm run build && npm run test",
    "restore": "git restore build dist",
    "website": "py ./scripts/build_website.py",
    "logo": "py ./scripts/rasterize_logo.py",
    "start": "npx serve ."
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Zushah/WasmGPU.git"
  },
  "bugs": {
    "url": "https://github.com/Zushah/WasmGPU/issues"
  },
  "homepage": "https://zushah.github.io/WasmGPU",
  "publishConfig": {
    "access": "public"
  },
  "save-prefix": "",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/WasmGPU.js"
    },
    "./min": {
      "import": "./dist/WasmGPU.min.js"
    },
    "./iife": {
      "default": "./dist/WasmGPU.iife.min.js"
    }
  },
  "keywords": [
    "webgpu",
    "webassembly",
    "wasm",
    "wgsl",
    "typescript",
    "rust",
    "gpu",
    "gpgpu",
    "compute",
    "graphics",
    "rendering",
    "engine",
    "3d",
    "3d-engine",
    "visualization",
    "scientific-computing",
    "mathematics",
    "science",
    "ndarray",
    "pointcloud",
    "glyph",
    "colormap",
    "gltf",
    "pbr",
    "smaa",
    "simd",
    "library"
  ]
}
