-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"version": "1.0.1",
"name": "threejs-gif-texture",
"description": "Load a gif as a Texture in THREEjs",
"repository": {
"type": "git",
"url": "git+https://github.com/bandinopla/threejs-gif-texture.git"
},
"packageManager": "[email protected]",
"author": {
"name": "Pablo Bandinopla",
"url": "https://github.com/bandinopla"
},
"homepage": "https://github.com/ryansonshine/threejs-gif-texture#readme",
"license": "BSD-2-Clause",
"scripts": {
"dev": "vite",
"build": "vite build && tsc"
},
"main": "./dist/three-giftexture.js",
"module": "./dist/three-giftexture.mjs",
"types": "./dist/THREE_GifTexture.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/three-giftexture.mjs",
"types": "./dist/THREE_GifTexture.d.ts"
},
"require": "./dist/three-giftexture.js"
}
},
"files": [
"./dist/three-giftexture.mjs",
"./dist/three-giftexture.js",
"./dist/*.d.ts"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/three": "^0.161.2",
"typescript": "^5.3.3",
"vite": "^5.0.8"
},
"keywords": [
"gif",
"three",
"threejs",
"3d",
"animation",
"Texture"
],
"dependencies": {
"gifuct-js": "^2.1.2"
},
"peerDependencies": {
"three": ">=0.160.1"
}
}