-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "@deck.gl-community/arrow-layers",
"version": "9.2.8",
"description": "A suite of Apache Arrow enabled layers for deck.gl",
"license": "MIT",
"private": true,
"keywords": [
"deck.gl",
"webgl",
"visualization",
"arrow",
"geoarrow"
],
"repository": {
"type": "git",
"url": "https://github.com/visgl/deck.gl-community"
},
"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/aggregation-layers": "~9.3.0-alpha.1",
"@deck.gl/core": "~9.3.0-alpha.1",
"@deck.gl/geo-layers": "~9.3.0-alpha.1",
"@deck.gl/layers": "~9.3.0-alpha.1",
"@geoarrow/geoarrow-js": "^0.3.0",
"@math.gl/core": "^4.0.0",
"@math.gl/polygon": "^4.0.0",
"apache-arrow": ">=15",
"threads": "^1.7.0"
}
}