-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 824 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 824 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
{
"name": "@deck.gl-community/bing-maps",
"description": "deck.gl integration with Bing Maps",
"license": "MIT",
"version": "9.2.8",
"publishConfig": {
"access": "public"
},
"keywords": [
"webgl",
"visualization",
"bing maps"
],
"repository": {
"type": "git",
"url": "https://github.com/visgl/deck.gl-community.gl.git"
},
"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"
}
}