-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"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"
}
}