@chromatic-coherence/generative-engine 1.0.0
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/LICENSE +36 -0
- package/README.md +80 -0
- package/dist/geometry.d.ts +40 -0
- package/dist/geometry.js +203 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +6 -0
- package/dist/math.d.ts +45 -0
- package/dist/math.js +151 -0
- package/dist/post.d.ts +57 -0
- package/dist/post.js +213 -0
- package/dist/shaders.d.ts +17 -0
- package/dist/shaders.js +307 -0
- package/dist/world.d.ts +263 -0
- package/dist/world.js +764 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@chromatic-coherence/generative-engine",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "THE THIRD ENGINE — a zero-dependency WebGL2 graphics engine grown from generative-charts-3d: HDR + bloom + SSAO post chain, hardware-PCF shadow maps, a geometry stdlib, ribbon strokes, group transforms and morph targets. The charts API rides on top unchanged.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc -p tsconfig.json",
|
|
26
|
+
"test": "node test/run.mjs",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"3d",
|
|
31
|
+
"webgl2",
|
|
32
|
+
"engine",
|
|
33
|
+
"graphics",
|
|
34
|
+
"bloom",
|
|
35
|
+
"ssao",
|
|
36
|
+
"shadows",
|
|
37
|
+
"zero-dependency"
|
|
38
|
+
],
|
|
39
|
+
"author": "Chromatic Coherence",
|
|
40
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"typescript": "^5"
|
|
43
|
+
}
|
|
44
|
+
}
|