wgsl-plus
Version:
A WGSL preprocessor, prettifier, minifier, obfuscator, and compiler with C-style macros, conditional compilation, file linking, and multi-format output for WebGPU shaders.
59 lines (58 loc) • 1.42 kB
JSON
{
"name": "wgsl-plus",
"version": "1.0.1",
"description": "A WGSL preprocessor, prettifier, minifier, obfuscator, and compiler with C-style macros, conditional compilation, file linking, and multi-format output for WebGPU shaders.",
"main": "index.js",
"bin": {
"wgsl-plus": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"author": "Joshua Sideris",
"keywords": [
"wgsl",
"webgpu",
"shader",
"compiler",
"obfuscator",
"minifier",
"pretty-printer",
"formatter",
"prettifier",
"beautifier",
"minify",
"obfuscate",
"linker",
"preprocessor",
"conditional-compilation",
"macros",
"webgpu-shaders",
"gpu-programming",
"shader-development",
"code-generation"
],
"repository": {
"type": "git",
"url": "https://github.com/JSideris/wgsl-plus"
},
"homepage": "https://jsideris.github.io/wgsl-plus/",
"bugs": {
"url": "https://github.com/JSideris/wgsl-plus/issues"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
},
"dependencies": {
"commander": "^13.1.0"
}
}