-
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.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 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/react",
"description": "React components for deck.gl",
"license": "MIT",
"version": "9.2.8",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/visgl/deck.gl-community"
},
"scripts": {
"test": "vitest run",
"test-watch": "vitest"
},
"keywords": [
"webgl",
"visualization",
"overlay",
"layer"
],
"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"
],
"dependencies": {
"@types/styled-react-modal": "^1.2.5",
"boxicons": "^2.1.4",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.1",
"styled-react-modal": "^3.1.1"
},
"gitHead": "8374ab0ac62a52ae8a6b14276694cabced43de35"
}