-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 895 Bytes
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
{
"name": "@deck.gl-community/three",
"version": "9.3.7",
"description": "Three.js-powered layers for deck.gl",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"layers",
"visualization",
"3d",
"threejs",
"trees",
"deck.gl"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "vitest run",
"test-watch": "vitest"
},
"dependencies": {
"three": "^0.170.0"
},
"peerDependencies": {
"@deck.gl/core": "~9.3.0",
"@deck.gl/mesh-layers": "~9.3.0"
},
"devDependencies": {
"@types/three": "^0.170.0"
}
}