{
  "name": "typegpu",
  "version": "0.12.3",
  "description": "A thin layer between JS and WebGPU/WGSL that improves development experience and allows for faster iteration.",
  "keywords": [
    "compute",
    "gpgpu",
    "shader",
    "shaders",
    "typescript",
    "webgpu",
    "wgpu",
    "wgsl"
  ],
  "homepage": "https://typegpu.com",
  "bugs": {
    "url": "https://github.com/software-mansion/TypeGPU/issues"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/software-mansion/TypeGPU.git",
    "directory": "packages/typegpu"
  },
  "type": "module",
  "sideEffects": false,
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./index.d.ts",
      "default": "./index.js"
    },
    "./data": {
      "types": "./data/index.d.ts",
      "default": "./data/index.js"
    },
    "./std": {
      "types": "./std/index.d.ts",
      "default": "./std/index.js"
    },
    "./common": {
      "types": "./common/index.d.ts",
      "default": "./common/index.js"
    },
    "./~internal": {
      "types": "./internal.d.ts",
      "default": "./internal.js"
    }
  },
  "dependencies": {
    "tsover-runtime": "^0.0.7",
    "typed-binary": "^4.3.3",
    "tinyest": "~0.3.2"
  },
  "engines": {
    "node": ">=12.20.0"
  },
  "main": "./index.js",
  "types": "./index.d.ts",
  "private": false,
  "scripts": {},
  "bin": {
    "typegpu": "./bin.mjs"
  }
}