-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 1.15 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
{
"name": "pymaplibregl",
"version": "0.2.5",
"description": "...",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "esbuild srcjs/index.js --bundle --minify --outfile=maplibre/srcjs/pywidget.js",
"build-dev": "esbuild srcjs/index.js --bundle --outfile=maplibre/srcjs/pywidget.js",
"build-ipywidget": "esbuild srcjs/ipywidget.js --bundle --minify --format=esm --outfile=maplibre/srcjs/ipywidget.js",
"build-ipywidget-dev": "esbuild srcjs/ipywidget.js --bundle --format=esm --outfile=maplibre/srcjs/ipywidget.js",
"build-rwidget": "esbuild srcjs/rwidget.js --bundle --minify --outfile=../r-maplibregl/inst/htmlwidgets/maplibre.js",
"prettier": "prettier srcjs --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Stefan Kuethe",
"license": "MIT",
"devDependencies": {
"esbuild": "0.19.10",
"prettier": "3.1.1"
},
"dependencies": {
"@deck.gl/aggregation-layers": "^9.0.16",
"@deck.gl/json": "^9.0.16",
"@deck.gl/layers": "^9.0.16",
"@deck.gl/mapbox": "^9.0.16",
"mustache": "^4.2.0",
"pmtiles": "^3.0.6"
}
}