We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2e9d29 commit 6ca715cCopy full SHA for 6ca715c
index.js
@@ -0,0 +1,5 @@
1
+import { GLTFAnimationPointerExtension } from "./src/GLTFLoaderAnimationPointer.js"
2
+
3
+export * from "./src/GLTFLoaderAnimationPointer.js"
4
5
+export default GLTFAnimationPointerExtension;
package.json
@@ -3,11 +3,12 @@
"version": "1.0.0",
"description": "KHR_animation_pointer support for three.js",
"type": "module",
6
- "main": "src/index.js",
+ "main": "index.js",
7
"types": "types/index.d.ts",
8
"exports": {
9
".": {
10
- "import": "./src/index.js"
+ "import": "./index.js",
11
+ "require": "./index.js"
12
}
13
},
14
"files": [
src/index.js
0 commit comments