vanta-engine 1.0.3 → 1.0.4
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/dist/{chunk-AAWFTQHP.js → chunk-BDKR3WGZ.mjs} +1 -1
- package/dist/index.js +177 -139
- package/dist/index.js.map +1 -1
- package/dist/{index.cjs → index.mjs} +140 -178
- package/dist/index.mjs.map +1 -0
- package/dist/{module-A2C3IOOM.js → module-62JUDQR5.mjs} +2 -2
- package/package.json +9 -7
- package/dist/index.cjs.map +0 -1
- /package/dist/{chunk-AAWFTQHP.js.map → chunk-BDKR3WGZ.mjs.map} +0 -0
- /package/dist/{module-A2C3IOOM.js.map → module-62JUDQR5.mjs.map} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__esm
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-BDKR3WGZ.mjs";
|
|
4
4
|
|
|
5
5
|
// (disabled):module
|
|
6
6
|
var init_module = __esm({
|
|
@@ -8,4 +8,4 @@ var init_module = __esm({
|
|
|
8
8
|
}
|
|
9
9
|
});
|
|
10
10
|
init_module();
|
|
11
|
-
//# sourceMappingURL=module-
|
|
11
|
+
//# sourceMappingURL=module-62JUDQR5.mjs.map
|
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vanta-engine",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "A node based 3D and 2D engine compatible with web environments.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"types": "./dist/index.d.ts",
|
|
7
6
|
"repository": "https://github.com/FrewtyPebbles/Vanta-3D-Engine",
|
|
8
|
-
"main":"dist/index.
|
|
9
|
-
"module": "dist/index.
|
|
7
|
+
"main": "dist/index.cjs",
|
|
8
|
+
"module": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"import": "./dist/index.
|
|
13
|
-
"require": "./dist/index.
|
|
14
|
-
"types": "./dist/index.d.ts"
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"default": "./dist/index.js"
|
|
15
16
|
}
|
|
16
17
|
},
|
|
17
18
|
"browser": {
|
|
@@ -25,6 +26,7 @@
|
|
|
25
26
|
],
|
|
26
27
|
"scripts": {
|
|
27
28
|
"build": "tsx build_scripts/sync_shaders.mts && tsup",
|
|
29
|
+
"prepublishOnly": "npm run build",
|
|
28
30
|
"build:watch": "ts-node build_scripts/sync_shaders.mts && tsup --watch",
|
|
29
31
|
"clean": "rimraf dist"
|
|
30
32
|
},
|