forked from developmentseed/lonboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 KB
/
package.json
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
{
"comment": {
"maplibre": "Upgrading maplibre to v4 broke the basemap in static HTML exports."
},
"dependencies": {
"@anywidget/react": "^0.0.7",
"@babel/runtime": "^7.24.5",
"@deck.gl/core": "^9.0.16",
"@deck.gl/extensions": "^9.0.16",
"@deck.gl/layers": "^9.0.16",
"@deck.gl/react": "^9.0.16",
"@deck.gl/widgets": "^9.0.16",
"@geoarrow/deck.gl-layers": "^0.3.0-beta.17",
"apache-arrow": "^16.1.0",
"html-to-image": "^1.11.11",
"maplibre-gl": "^3.6.2",
"parquet-wasm": "0.6.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-map-gl": "^7.1.7",
"uuid": "^9.0.1"
},
"type": "module",
"devDependencies": {
"@anywidget/types": "^0.1.5",
"@jupyter-widgets/base": "^6.0.7",
"@types/react": "^18.3.2",
"@types/uuid": "^9.0.8",
"esbuild": "^0.21.3",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"scripts": {
"build": "node ./build.mjs",
"build:watch": "nodemon --watch src/ --exec \"npm run build\" --ext js,json,ts,tsx,css",
"fmt:check": "prettier './src/**/*.{ts,tsx,css}' --check",
"fmt": "prettier './src/**/*.{ts,tsx,css}' --write",
"test": "vitest run",
"typecheck": "tsc --build"
},
"volta": {
"node": "18.18.2",
"npm": "10.2.3"
}
}