@gnsx/three 0.184.3 → 0.184.5
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/index.d.ts +1 -0
- package/package.json +7 -1
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@gnsx/three-types';
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gnsx/three",
|
|
3
|
-
"version": "0.184.
|
|
3
|
+
"version": "0.184.5",
|
|
4
|
+
"types": "index.d.ts",
|
|
4
5
|
"description": "JavaScript 3D library",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "./build/three.cjs",
|
|
7
8
|
"module": "./build/three.module.js",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
11
|
+
"types": "./index.d.ts",
|
|
10
12
|
"import": "./build/three.module.js",
|
|
11
13
|
"require": "./build/three.cjs"
|
|
12
14
|
},
|
|
@@ -29,6 +31,7 @@
|
|
|
29
31
|
"build",
|
|
30
32
|
"examples/jsm",
|
|
31
33
|
"examples/fonts",
|
|
34
|
+
"index.d.ts",
|
|
32
35
|
"LICENSE",
|
|
33
36
|
"package.json",
|
|
34
37
|
"README.md",
|
|
@@ -124,5 +127,8 @@
|
|
|
124
127
|
"build/three.module.js"
|
|
125
128
|
],
|
|
126
129
|
"directories": {}
|
|
130
|
+
},
|
|
131
|
+
"dependencies": {
|
|
132
|
+
"@gnsx/three-types": "^0.184.1"
|
|
127
133
|
}
|
|
128
134
|
}
|