@thi.ng/shader-ast-js 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +3 -2
- package/package.json +23 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://mastodon.thi.ng/@toxi)
|
|
9
9
|
|
|
10
10
|
This project is part of the
|
|
11
|
-
[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.
|
|
11
|
+
[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo and anti-framework.
|
|
12
12
|
|
|
13
13
|
- [About](#about)
|
|
14
14
|
- [Unsupported features](#unsupported-features)
|
|
@@ -53,6 +53,7 @@ which altogether provide ~750 optimized vector/matrix functions.
|
|
|
53
53
|
|
|
54
54
|
## Related packages
|
|
55
55
|
|
|
56
|
+
- [@thi.ng/pixel](https://github.com/thi-ng/umbrella/tree/develop/packages/pixel) - Typedarray integer & float pixel buffers w/ customizable formats, blitting, drawing, convolution
|
|
56
57
|
- [@thi.ng/shader-ast-glsl](https://github.com/thi-ng/umbrella/tree/develop/packages/shader-ast-glsl) - Customizable GLSL codegen for [@thi.ng/shader-ast](https://github.com/thi-ng/umbrella/tree/develop/packages/shader-ast)
|
|
57
58
|
- [@thi.ng/shader-ast-stdlib](https://github.com/thi-ng/umbrella/tree/develop/packages/shader-ast-stdlib) - Function collection for modular GPGPU / shader programming with [@thi.ng/shader-ast](https://github.com/thi-ng/umbrella/tree/develop/packages/shader-ast)
|
|
58
59
|
|
|
@@ -76,7 +77,7 @@ For Node.js REPL:
|
|
|
76
77
|
const shaderAstJs = await import("@thi.ng/shader-ast-js");
|
|
77
78
|
```
|
|
78
79
|
|
|
79
|
-
Package sizes (brotli'd, pre-treeshake): ESM: 6.
|
|
80
|
+
Package sizes (brotli'd, pre-treeshake): ESM: 6.44 KB
|
|
80
81
|
|
|
81
82
|
## Dependencies
|
|
82
83
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/shader-ast-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,24 +34,28 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.9.
|
|
38
|
-
"@thi.ng/checks": "^3.4.
|
|
39
|
-
"@thi.ng/errors": "^2.3.
|
|
40
|
-
"@thi.ng/math": "^5.
|
|
41
|
-
"@thi.ng/matrices": "^2.1.
|
|
42
|
-
"@thi.ng/pixel": "^4.2.
|
|
43
|
-
"@thi.ng/shader-ast": "^0.12.
|
|
44
|
-
"@thi.ng/vectors": "^7.7.
|
|
37
|
+
"@thi.ng/api": "^8.9.4",
|
|
38
|
+
"@thi.ng/checks": "^3.4.4",
|
|
39
|
+
"@thi.ng/errors": "^2.3.4",
|
|
40
|
+
"@thi.ng/math": "^5.6.0",
|
|
41
|
+
"@thi.ng/matrices": "^2.1.66",
|
|
42
|
+
"@thi.ng/pixel": "^4.2.16",
|
|
43
|
+
"@thi.ng/shader-ast": "^0.12.62",
|
|
44
|
+
"@thi.ng/vectors": "^7.7.9"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@microsoft/api-extractor": "^7.36.4",
|
|
48
|
-
"@thi.ng/testament": "^0.3.
|
|
48
|
+
"@thi.ng/testament": "^0.3.22",
|
|
49
49
|
"rimraf": "^5.0.1",
|
|
50
50
|
"tools": "^0.0.1",
|
|
51
51
|
"typedoc": "^0.24.8",
|
|
52
52
|
"typescript": "^5.1.6"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
|
+
"2d",
|
|
56
|
+
"3d",
|
|
57
|
+
"4d",
|
|
58
|
+
"argb",
|
|
55
59
|
"ast",
|
|
56
60
|
"canvas",
|
|
57
61
|
"codegen",
|
|
@@ -59,7 +63,14 @@
|
|
|
59
63
|
"dsl",
|
|
60
64
|
"emulator",
|
|
61
65
|
"glsl",
|
|
66
|
+
"headless",
|
|
67
|
+
"pixel",
|
|
68
|
+
"render",
|
|
69
|
+
"rgb565",
|
|
70
|
+
"runtime",
|
|
62
71
|
"shader",
|
|
72
|
+
"texture",
|
|
73
|
+
"transpiler",
|
|
63
74
|
"typescript",
|
|
64
75
|
"webgl"
|
|
65
76
|
],
|
|
@@ -145,10 +156,11 @@
|
|
|
145
156
|
"thi.ng": {
|
|
146
157
|
"parent": "@thi.ng/shader-ast",
|
|
147
158
|
"related": [
|
|
159
|
+
"pixel",
|
|
148
160
|
"shader-ast-glsl",
|
|
149
161
|
"shader-ast-stdlib"
|
|
150
162
|
],
|
|
151
163
|
"year": 2019
|
|
152
164
|
},
|
|
153
|
-
"gitHead": "
|
|
165
|
+
"gitHead": "04f545c7be1811ed24be1a6824d867b1ea9bded1\n"
|
|
154
166
|
}
|