-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "@deck.gl-community/infovis-layers",
"version": "9.2.8",
"description": "Infovis layers (non-geospatial) for deck.gl",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"layers",
"visualization",
"gpu",
"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": {
"@deck.gl/core": "~9.3.0-alpha.1",
"@deck.gl/layers": "~9.3.0-alpha.1",
"@luma.gl/core": "~9.3.0-alpha.2",
"@luma.gl/engine": "~9.3.0-alpha.2",
"@luma.gl/shadertools": "~9.3.0-alpha.2"
},
"devDependencies": {
"@deck.gl/test-utils": "~9.3.0-alpha.1",
"@luma.gl/webgpu": "~9.3.0-alpha.2",
"@probe.gl/test-utils": "^4.0.4"
}
}