-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.78 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@takram/three-clouds",
"version": "0.7.6",
"description": "A Three.js and R3F implementation of geospatial volumetric clouds",
"keywords": [
"three",
"three.js",
"geospatial",
"volumetric",
"clouds"
],
"homepage": "https://github.com/takram-design-engineering/three-geospatial/tree/main/packages/clouds",
"bugs": {
"url": "https://github.com/takram-design-engineering/three-geospatial/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/takram-design-engineering/three-geospatial.git"
},
"license": "MIT",
"author": "Shota Matsuda <shota@takram.com>",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.cjs"
},
"./r3f": {
"types": "./types/r3f/index.d.ts",
"import": "./build/r3f.js",
"require": "./build/r3f.cjs"
}
},
"main": "./build/index.cjs",
"module": "./build/index.js",
"types": "./types/index.d.ts",
"files": [
"assets",
"build",
"src",
"types",
"package.json",
"CHANGELOG.md",
"README.md"
],
"dependencies": {
"@takram/three-atmosphere": "0.19.1",
"@takram/three-geospatial": "0.9.1",
"tiny-invariant": "^1.3.3",
"type-fest": "^5.4.4"
},
"peerDependencies": {
"@react-three/fiber": ">=9.0.4",
"@react-three/postprocessing": ">=3.0.4",
"postprocessing": ">=6.36.7",
"react": ">=19.0",
"three": ">=0.170.0"
},
"peerDependenciesMeta": {
"@react-three/drei": {
"optional": true
},
"@react-three/fiber": {
"optional": true
},
"@react-three/postprocessing": {
"optional": true
},
"react": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}