typegpu
Version:
A thin layer between JS and WebGPU/WGSL that improves development experience and allows for faster iteration.
67 lines • 1.48 kB
JSON
{
"name": "typegpu",
"version": "0.12.2",
"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": [
"./data/assignInfixOperators.js"
],
"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"
}
}