@thi.ng/shader-ast-js 1.0.0 → 1.0.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +3 -2
  3. package/package.json +23 -11
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-08-14T13:30:45Z
3
+ - **Last updated**: 2023-08-22T14:39:27Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](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.27 KB
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.0",
3
+ "version": "1.0.1",
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.3",
38
- "@thi.ng/checks": "^3.4.3",
39
- "@thi.ng/errors": "^2.3.3",
40
- "@thi.ng/math": "^5.5.4",
41
- "@thi.ng/matrices": "^2.1.64",
42
- "@thi.ng/pixel": "^4.2.14",
43
- "@thi.ng/shader-ast": "^0.12.60",
44
- "@thi.ng/vectors": "^7.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.5.5",
41
+ "@thi.ng/matrices": "^2.1.65",
42
+ "@thi.ng/pixel": "^4.2.15",
43
+ "@thi.ng/shader-ast": "^0.12.61",
44
+ "@thi.ng/vectors": "^7.7.8"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@microsoft/api-extractor": "^7.36.4",
48
- "@thi.ng/testament": "^0.3.21",
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": "4e8f1abeeba7b919e069954eada917ecd2e9a8e9\n"
165
+ "gitHead": "74cfe3fb8de5bfcbfc1109e67604541cbd7b77aa\n"
154
166
  }