forked from geoblocks/ol-maplibre-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 884 Bytes
/
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
{
"name": "@geoblocks/ol-maplibre-layer",
"version": "0.0.4",
"license": "BSD-3-Clause",
"repository": "github:geoblocks/ol-maplibre-layer",
"publishConfig": {
"access": "public"
},
"main": "src/MapLibreLayer.js",
"module": "src/MapLibreLayer.js",
"files": [
"/src"
],
"scripts": {
"build-demo": "parcel build --out-dir dist examples/*.html --public-url ./",
"lint": "eslint src/ examples",
"start": "parcel serve --port 8080 examples/*.html",
"gh-pages": "rm -rf dist && npm run build-demo && gh-pages -d dist"
},
"browserslist": [
"> 1% and not IE > 0, Firefox ESR"
],
"peerDependencies": {
"maplibre-gl": ">=2.0.4",
"ol": "^7.1.1-dev.1664383879017"
},
"devDependencies": {
"eslint": "^8.24.0",
"gh-pages": "^4.0.0",
"maplibre-gl": "^2.4.0",
"ol": "^7.1.0",
"parcel-bundler": "^1.12.5"
}
}