@thi.ng/shader-ast-js 0.6.10 → 0.7.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +133 -55
  2. package/README.md +1 -1
  3. package/package.json +147 -142
package/CHANGELOG.md CHANGED
@@ -1,109 +1,187 @@
1
1
  # Change Log
2
2
 
3
+ - **Last updated**: 2021-11-21T17:09:28Z
4
+ - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
+
3
6
  All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
7
+ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
8
+
9
+ **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
+ and/or version bumps of transitive dependencies.
11
+
12
+ ## [0.7.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.7.0) (2021-11-17)
13
+
14
+ #### 🚀 Features
15
+
16
+ - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
17
+ Improving the overall build ergonomics
18
+ - introduced a tools workspaces
19
+ - imported it in all needed packages/examples
20
+ - inclusive project root
21
+
22
+ #### ♻️ Refactoring
23
+
24
+ - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
25
+ this commit reverts (partly) changes made in:
26
+ ef346d7a8753590dc9094108a3d861a8dbd5dd2c
27
+ overall purpose is better testament ergonomics:
28
+ instead of having to pass NODE_OPTIONS with every invocation
29
+ having a binary to handle this for us.
30
+
31
+ ### [0.6.10](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.6.10) (2021-11-04)
32
+
33
+ #### ♻️ Refactoring
34
+
35
+ - apply [@thi.ng/pixel](https://github.com/thi-ng/umbrella/tree/main/packages/pixel) changes ([96b50be](https://github.com/thi-ng/umbrella/commit/96b50be))
36
+
37
+ ### [0.6.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.6.1) (2021-10-13)
38
+
39
+ #### ♻️ Refactoring
40
+
41
+ - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
42
+ - update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
43
+ - add .js suffix for all relative imports
44
+
45
+ ## [0.6.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.6.0) (2021-10-12)
5
46
 
6
- ## [0.6.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.6.9...@thi.ng/shader-ast-js@0.6.10) (2021-11-04)
47
+ #### 🛑 Breaking changes
7
48
 
8
- **Note:** Version bump only for package @thi.ng/shader-ast-js
49
+ - major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea))
50
+ - BREAKING CHANGE: discontinue CommonJS & UMD versions
51
+ - only ESM modules will be published from now on
52
+ - CJS obsolete due to ESM support in recent versions of node:
53
+ - i.e. launch NodeJS via:
54
+ - `node --experimental-specifier-resolution=node --experimental-repl-await`
55
+ - in the node REPL use `await import(...)` instead of `require()`
56
+ - UMD obsolete due to widespread browser support for ESM
57
+ Also:
58
+ - normalize/restructure/reorg all package.json files
59
+ - cleanup all build scripts, remove obsolete
60
+ - switch from mocha to [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament) for all tests
9
61
 
62
+ #### 🚀 Features
10
63
 
64
+ - add float precision option ([a9abcfe](https://github.com/thi-ng/umbrella/commit/a9abcfe))
11
65
 
66
+ #### ♻️ Refactoring
12
67
 
68
+ - update imports ([402d5d3](https://github.com/thi-ng/umbrella/commit/402d5d3))
69
+ - update imports ([70476b4](https://github.com/thi-ng/umbrella/commit/70476b4))
70
+ - update deps & imports in various pkgs ([e1cf29e](https://github.com/thi-ng/umbrella/commit/e1cf29e))
71
+ - largely related to recent updates/restructuring of these packages:
72
+ - api
73
+ - defmulti
74
+ - errors
75
+ - logger
76
+ - update imports ([69414ec](https://github.com/thi-ng/umbrella/commit/69414ec))
77
+ - update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
78
+ - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
79
+ - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
13
80
 
14
- ## [0.6.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.6.8...@thi.ng/shader-ast-js@0.6.9) (2021-11-03)
81
+ ### [0.5.45](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.5.45) (2021-08-17)
15
82
 
16
- **Note:** Version bump only for package @thi.ng/shader-ast-js
83
+ #### 🩹 Bug fixes
17
84
 
85
+ - fix matrix indexing ([094ab36](https://github.com/thi-ng/umbrella/commit/094ab36))
86
+ - add mat2/3/4 impls for new `idxm` AST node type
18
87
 
88
+ ### [0.5.36](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.5.36) (2021-04-24)
19
89
 
90
+ #### ♻️ Refactoring
20
91
 
92
+ - update modulo handling ([63eb749](https://github.com/thi-ng/umbrella/commit/63eb749))
93
+ - reflecting changes in [@thi.ng/math](https://github.com/thi-ng/umbrella/tree/main/packages/math)
21
94
 
22
- # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.49...@thi.ng/shader-ast-js@0.6.0) (2021-10-12)
95
+ ### [0.5.12](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.5.12) (2020-12-07)
23
96
 
97
+ #### ♻️ Refactoring
24
98
 
25
- ### Build System
99
+ - update type-only imports in remaining pkgs ([b22aa30](https://github.com/thi-ng/umbrella/commit/b22aa30))
100
+ - update type-only imports in various tests/pkgs ([3fd9c24](https://github.com/thi-ng/umbrella/commit/3fd9c24))
26
101
 
27
- * major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea9fab2a645d6c5f2bf2591459b939c09b6))
102
+ ### [0.5.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.5.6) (2020-09-13)
28
103
 
104
+ #### ♻️ Refactoring
29
105
 
30
- ### Features
106
+ - update imports ([643376a](https://github.com/thi-ng/umbrella/commit/643376a))
31
107
 
32
- * **shader-ast-js:** add float precision option ([a9abcfe](https://github.com/thi-ng/umbrella/commit/a9abcfe7304fd6f8273ed1c2c7d190abedeaca13))
108
+ ### [0.5.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.5.5) (2020-08-28)
33
109
 
110
+ #### ♻️ Refactoring
34
111
 
35
- ### BREAKING CHANGES
112
+ - minor updates (vec coercions) ([a220e3c](https://github.com/thi-ng/umbrella/commit/a220e3c))
36
113
 
37
- * discontinue CommonJS & UMD versions
114
+ ## [0.5.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.5.0) (2020-08-10)
38
115
 
39
- - only ESM modules will be published from now on
40
- - CJS obsolete due to ESM support in recent versions of node:
41
- - i.e. launch NodeJS via:
42
- - `node --experimental-specifier-resolution=node --experimental-repl-await`
43
- - in the node REPL use `await import(...)` instead of `require()`
44
- - UMD obsolete due to widespread browser support for ESM
116
+ #### 🚀 Features
45
117
 
46
- Also:
47
- - normalize/restructure/reorg all package.json files
48
- - cleanup all build scripts, remove obsolete
49
- - switch from mocha to @thi.ng/testament for all tests
118
+ - add vec coercions & bvec ops ([3f111c9](https://github.com/thi-ng/umbrella/commit/3f111c9))
50
119
 
120
+ ### [0.4.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.4.5) (2020-02-25)
51
121
 
122
+ #### ♻️ Refactoring
52
123
 
124
+ - update imports ([5570d18](https://github.com/thi-ng/umbrella/commit/5570d18))
53
125
 
126
+ ## [0.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.4.0) (2019-09-21)
54
127
 
128
+ #### 🚀 Features
55
129
 
56
- ## [0.5.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.44...@thi.ng/shader-ast-js@0.5.45) (2021-08-17)
130
+ - add div-by-zero guards ([233528d](https://github.com/thi-ng/umbrella/commit/233528d))
131
+ - replace JS runtime fns, add doc strings ([0798a35](https://github.com/thi-ng/umbrella/commit/0798a35))
132
+ - add renderPixels()
133
+ - add renderToBuffer()
134
+ - add canvasRenderer()
57
135
 
58
- ### Bug Fixes
136
+ #### 🩹 Bug fixes
59
137
 
60
- - **shader-ast-js:** fix matrix indexing ([094ab36](https://github.com/thi-ng/umbrella/commit/094ab360f927dd0f9cecc8afa090de79334295dd))
138
+ - fix divisions ([bc81ff8](https://github.com/thi-ng/umbrella/commit/bc81ff8))
61
139
 
62
- # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.4.40...@thi.ng/shader-ast-js@0.5.0) (2020-08-10)
140
+ ### [0.3.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.3.1) (2019-08-21)
63
141
 
64
- ### Features
142
+ #### ♻️ Refactoring
65
143
 
66
- - **shader-ast-js:** add vec coercions & bvec ops ([3f111c9](https://github.com/thi-ng/umbrella/commit/3f111c98190c8c6972033901df391a237d7d8491))
144
+ - split env.ts into separate files ([caa6301](https://github.com/thi-ng/umbrella/commit/caa6301))
145
+ - move env to own file, update/simplify targetJS() ([f5ebec8](https://github.com/thi-ng/umbrella/commit/f5ebec8))
67
146
 
68
- # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.3.1...@thi.ng/shader-ast-js@0.4.0) (2019-09-21)
147
+ ## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.3.0) (2019-08-17)
69
148
 
70
- ### Bug Fixes
149
+ #### 🚀 Features
71
150
 
72
- - **shader-ast-js:** fix divisions ([bc81ff8](https://github.com/thi-ng/umbrella/commit/bc81ff8))
151
+ - add support for 2-arg atan(), move types to api.ts ([a760085](https://github.com/thi-ng/umbrella/commit/a760085))
73
152
 
74
- ### Features
153
+ ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.2.0) (2019-07-12)
75
154
 
76
- - **shader-ast-js:** add div-by-zero guards ([233528d](https://github.com/thi-ng/umbrella/commit/233528d))
77
- - **shader-ast-js:** replace JS runtime fns, add doc strings ([0798a35](https://github.com/thi-ng/umbrella/commit/0798a35))
155
+ #### 🚀 Features
78
156
 
79
- # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.2.3...@thi.ng/shader-ast-js@0.3.0) (2019-08-17)
157
+ - add uvec/bvec support, add bool => float casting ([90bb850](https://github.com/thi-ng/umbrella/commit/90bb850))
80
158
 
81
- ### Features
159
+ ### [0.1.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.1.1) (2019-07-08)
82
160
 
83
- - **shader-ast-js:** add support for 2-arg atan(), move types to api.ts ([a760085](https://github.com/thi-ng/umbrella/commit/a760085))
161
+ #### ♻️ Refactoring
84
162
 
85
- # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.1.1...@thi.ng/shader-ast-js@0.2.0) (2019-07-12)
163
+ - update function arg lists ([#98](https://github.com/thi-ng/umbrella/issues/98)) ([7d5fdce](https://github.com/thi-ng/umbrella/commit/7d5fdce))
86
164
 
87
- ### Features
165
+ ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-js@0.1.0) (2019-07-07)
88
166
 
89
- - **shader-ast-js:** add uvec/bvec support, add bool => float casting ([90bb850](https://github.com/thi-ng/umbrella/commit/90bb850))
167
+ #### 🚀 Features
90
168
 
91
- # 0.1.0 (2019-07-07)
169
+ - add uvec ops, update imports ([5dcd39f](https://github.com/thi-ng/umbrella/commit/5dcd39f))
170
+ - add missing texture lookup stubs ([f0370b0](https://github.com/thi-ng/umbrella/commit/f0370b0))
171
+ - add array init, more builtin stubs, minor refactor ([fb5141e](https://github.com/thi-ng/umbrella/commit/fb5141e))
172
+ - add % operator support ([c1b25c6](https://github.com/thi-ng/umbrella/commit/c1b25c6))
173
+ - add post-inc/dec support, update op1 handler ([8073edd](https://github.com/thi-ng/umbrella/commit/8073edd))
174
+ - int/uint/ivec support, while loop, fix bool ([003069e](https://github.com/thi-ng/umbrella/commit/003069e))
175
+ - extract JS codegen & runtime as own pkg ([8177469](https://github.com/thi-ng/umbrella/commit/8177469))
92
176
 
93
- ### Bug Fixes
177
+ #### 🩹 Bug fixes
94
178
 
95
- - **shader-ast-js:** add missing faceForward, reflect, refract builtins ([c63058e](https://github.com/thi-ng/umbrella/commit/c63058e))
96
- - **shader-ast-js:** add/fix vec4 ops ([7f7f1f6](https://github.com/thi-ng/umbrella/commit/7f7f1f6))
97
- - **shader-ast-js:** avoid extraneous semicolons ([2b56c91](https://github.com/thi-ng/umbrella/commit/2b56c91))
98
- - **shader-ast-js:** op2 int handling, update vectors/matrices imports, update pkg ([dc54ec2](https://github.com/thi-ng/umbrella/commit/dc54ec2))
99
- - **shader-ast-js:** op2 type hint interpretation ([fdaac1f](https://github.com/thi-ng/umbrella/commit/fdaac1f))
179
+ - add missing faceForward, reflect, refract builtins ([c63058e](https://github.com/thi-ng/umbrella/commit/c63058e))
180
+ - add/fix vec4 ops ([7f7f1f6](https://github.com/thi-ng/umbrella/commit/7f7f1f6))
181
+ - op2 type hint interpretation ([fdaac1f](https://github.com/thi-ng/umbrella/commit/fdaac1f))
182
+ - avoid extraneous semicolons ([2b56c91](https://github.com/thi-ng/umbrella/commit/2b56c91))
183
+ - op2 int handling, update vectors/matrices imports, update pkg ([dc54ec2](https://github.com/thi-ng/umbrella/commit/dc54ec2))
100
184
 
101
- ### Features
185
+ #### ♻️ Refactoring
102
186
 
103
- - **shader-ast-js:** add % operator support ([c1b25c6](https://github.com/thi-ng/umbrella/commit/c1b25c6))
104
- - **shader-ast-js:** add array init, more builtin stubs, minor refactor ([fb5141e](https://github.com/thi-ng/umbrella/commit/fb5141e))
105
- - **shader-ast-js:** add missing texture lookup stubs ([f0370b0](https://github.com/thi-ng/umbrella/commit/f0370b0))
106
- - **shader-ast-js:** add post-inc/dec support, update op1 handler ([8073edd](https://github.com/thi-ng/umbrella/commit/8073edd))
107
- - **shader-ast-js:** add uvec ops, update imports ([5dcd39f](https://github.com/thi-ng/umbrella/commit/5dcd39f))
108
- - **shader-ast-js:** extract JS codegen & runtime as own pkg ([8177469](https://github.com/thi-ng/umbrella/commit/8177469))
109
- - **shader-ast-js:** int/uint/ivec support, while loop, fix bool ([003069e](https://github.com/thi-ng/umbrella/commit/003069e))
187
+ - update break/continue/discard handling ([ec2fd9f](https://github.com/thi-ng/umbrella/commit/ec2fd9f))
package/README.md CHANGED
@@ -78,7 +78,7 @@ node --experimental-repl-await
78
78
  > const shaderAstJs = await import("@thi.ng/shader-ast-js");
79
79
  ```
80
80
 
81
- Package sizes (gzipped, pre-treeshake): ESM: 5.75 KB
81
+ Package sizes (gzipped, pre-treeshake): ESM: 7.21 KB
82
82
 
83
83
  ## Dependencies
84
84
 
package/package.json CHANGED
@@ -1,146 +1,151 @@
1
1
  {
2
- "name": "@thi.ng/shader-ast-js",
3
- "version": "0.6.10",
4
- "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast",
5
- "type": "module",
6
- "module": "./index.js",
7
- "typings": "./index.d.ts",
8
- "sideEffects": false,
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/thi-ng/umbrella.git"
12
- },
13
- "homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/shader-ast-js#readme",
14
- "funding": [
15
- {
16
- "type": "github",
17
- "url": "https://github.com/sponsors/postspectacular"
18
- },
19
- {
20
- "type": "patreon",
21
- "url": "https://patreon.com/thing_umbrella"
22
- }
23
- ],
24
- "author": "Karsten Schmidt <k+npm@thi.ng>",
25
- "license": "Apache-2.0",
26
- "scripts": {
27
- "build": "yarn clean && tsc --declaration",
28
- "clean": "rimraf *.js *.d.ts *.map doc env",
29
- "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
- "doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
31
- "doc:readme": "yarn doc:stats && ../../scripts/node-esm ../../tools/src/readme.ts",
32
- "doc:stats": "../../scripts/node-esm ../../tools/src/module-stats.ts",
33
- "pub": "yarn build && yarn publish --access public",
34
- "test": "testament test"
35
- },
36
- "dependencies": {
37
- "@thi.ng/api": "^8.1.0",
38
- "@thi.ng/checks": "^3.0.6",
39
- "@thi.ng/errors": "^2.0.6",
40
- "@thi.ng/math": "^5.0.7",
41
- "@thi.ng/matrices": "^2.0.8",
42
- "@thi.ng/pixel": "^3.0.0",
43
- "@thi.ng/shader-ast": "^0.11.8",
44
- "@thi.ng/vectors": "^7.1.0"
45
- },
46
- "devDependencies": {
47
- "@thi.ng/testament": "^0.1.6"
48
- },
49
- "keywords": [
50
- "ast",
51
- "canvas",
52
- "codegen",
53
- "compiler",
54
- "dsl",
55
- "emulator",
56
- "glsl",
57
- "shader",
58
- "typescript",
59
- "webgl"
60
- ],
61
- "publishConfig": {
62
- "access": "public"
2
+ "name": "@thi.ng/shader-ast-js",
3
+ "version": "0.7.2",
4
+ "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast",
5
+ "type": "module",
6
+ "module": "./index.js",
7
+ "typings": "./index.d.ts",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/thi-ng/umbrella.git"
12
+ },
13
+ "homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/shader-ast-js#readme",
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/postspectacular"
18
+ },
19
+ {
20
+ "type": "patreon",
21
+ "url": "https://patreon.com/thing_umbrella"
22
+ }
23
+ ],
24
+ "author": "Karsten Schmidt <k+npm@thi.ng>",
25
+ "license": "Apache-2.0",
26
+ "scripts": {
27
+ "build": "yarn clean && tsc --declaration",
28
+ "clean": "rimraf '*.js' '*.d.ts' '*.map' doc env",
29
+ "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
+ "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
31
+ "doc:readme": "yarn doc:stats && tools:readme",
32
+ "doc:stats": "tools:module-stats",
33
+ "pub": "yarn npm publish --access public",
34
+ "test": "testament test"
35
+ },
36
+ "dependencies": {
37
+ "@thi.ng/api": "^8.3.2",
38
+ "@thi.ng/checks": "^3.1.2",
39
+ "@thi.ng/errors": "^2.1.2",
40
+ "@thi.ng/math": "^5.1.2",
41
+ "@thi.ng/matrices": "^2.1.2",
42
+ "@thi.ng/pixel": "^3.2.2",
43
+ "@thi.ng/shader-ast": "^0.12.2",
44
+ "@thi.ng/vectors": "^7.2.2"
45
+ },
46
+ "devDependencies": {
47
+ "@microsoft/api-extractor": "^7.18.19",
48
+ "@thi.ng/testament": "^0.2.2",
49
+ "rimraf": "^3.0.2",
50
+ "tools": "^0.0.1",
51
+ "typedoc": "^0.22.9",
52
+ "typescript": "^4.5.2"
53
+ },
54
+ "keywords": [
55
+ "ast",
56
+ "canvas",
57
+ "codegen",
58
+ "compiler",
59
+ "dsl",
60
+ "emulator",
61
+ "glsl",
62
+ "shader",
63
+ "typescript",
64
+ "webgl"
65
+ ],
66
+ "publishConfig": {
67
+ "access": "public"
68
+ },
69
+ "engines": {
70
+ "node": ">=12.7"
71
+ },
72
+ "files": [
73
+ "*.js",
74
+ "*.d.ts",
75
+ "env"
76
+ ],
77
+ "exports": {
78
+ ".": {
79
+ "import": "./index.js"
80
+ },
81
+ "./api": {
82
+ "import": "./api.js"
83
+ },
84
+ "./env/bvec": {
85
+ "import": "./env/bvec.js"
86
+ },
87
+ "./env/float": {
88
+ "import": "./env/float.js"
89
+ },
90
+ "./env/int": {
91
+ "import": "./env/int.js"
92
+ },
93
+ "./env/ivec2": {
94
+ "import": "./env/ivec2.js"
95
+ },
96
+ "./env/ivec3": {
97
+ "import": "./env/ivec3.js"
98
+ },
99
+ "./env/ivec4": {
100
+ "import": "./env/ivec4.js"
101
+ },
102
+ "./env/mat2": {
103
+ "import": "./env/mat2.js"
104
+ },
105
+ "./env/mat3": {
106
+ "import": "./env/mat3.js"
107
+ },
108
+ "./env/mat4": {
109
+ "import": "./env/mat4.js"
110
+ },
111
+ "./env/uint": {
112
+ "import": "./env/uint.js"
113
+ },
114
+ "./env/uvec2": {
115
+ "import": "./env/uvec2.js"
116
+ },
117
+ "./env/uvec3": {
118
+ "import": "./env/uvec3.js"
119
+ },
120
+ "./env/uvec4": {
121
+ "import": "./env/uvec4.js"
122
+ },
123
+ "./env/vec2": {
124
+ "import": "./env/vec2.js"
125
+ },
126
+ "./env/vec3": {
127
+ "import": "./env/vec3.js"
128
+ },
129
+ "./env/vec4": {
130
+ "import": "./env/vec4.js"
131
+ },
132
+ "./env": {
133
+ "import": "./env.js"
63
134
  },
64
- "engines": {
65
- "node": ">=12.7"
135
+ "./runtime": {
136
+ "import": "./runtime.js"
66
137
  },
67
- "files": [
68
- "*.js",
69
- "*.d.ts",
70
- "env"
138
+ "./target": {
139
+ "import": "./target.js"
140
+ }
141
+ },
142
+ "thi.ng": {
143
+ "parent": "@thi.ng/shader-ast",
144
+ "related": [
145
+ "shader-ast-glsl",
146
+ "shader-ast-stdlib"
71
147
  ],
72
- "exports": {
73
- ".": {
74
- "import": "./index.js"
75
- },
76
- "./api": {
77
- "import": "./api.js"
78
- },
79
- "./env/bvec": {
80
- "import": "./env/bvec.js"
81
- },
82
- "./env/float": {
83
- "import": "./env/float.js"
84
- },
85
- "./env/int": {
86
- "import": "./env/int.js"
87
- },
88
- "./env/ivec2": {
89
- "import": "./env/ivec2.js"
90
- },
91
- "./env/ivec3": {
92
- "import": "./env/ivec3.js"
93
- },
94
- "./env/ivec4": {
95
- "import": "./env/ivec4.js"
96
- },
97
- "./env/mat2": {
98
- "import": "./env/mat2.js"
99
- },
100
- "./env/mat3": {
101
- "import": "./env/mat3.js"
102
- },
103
- "./env/mat4": {
104
- "import": "./env/mat4.js"
105
- },
106
- "./env/uint": {
107
- "import": "./env/uint.js"
108
- },
109
- "./env/uvec2": {
110
- "import": "./env/uvec2.js"
111
- },
112
- "./env/uvec3": {
113
- "import": "./env/uvec3.js"
114
- },
115
- "./env/uvec4": {
116
- "import": "./env/uvec4.js"
117
- },
118
- "./env/vec2": {
119
- "import": "./env/vec2.js"
120
- },
121
- "./env/vec3": {
122
- "import": "./env/vec3.js"
123
- },
124
- "./env/vec4": {
125
- "import": "./env/vec4.js"
126
- },
127
- "./env": {
128
- "import": "./env.js"
129
- },
130
- "./runtime": {
131
- "import": "./runtime.js"
132
- },
133
- "./target": {
134
- "import": "./target.js"
135
- }
136
- },
137
- "thi.ng": {
138
- "parent": "@thi.ng/shader-ast",
139
- "related": [
140
- "shader-ast-glsl",
141
- "shader-ast-stdlib"
142
- ],
143
- "year": 2019
144
- },
145
- "gitHead": "d6aca4b4edb697613ed6635b1c0b12f0bf27b1f0"
146
- }
148
+ "year": 2019
149
+ },
150
+ "gitHead": "e8a7c2a40191b391cef182c2978e5a6c85987a87\n"
151
+ }