-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.42 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
48
49
50
51
52
53
54
55
{
"name": "@geoblocks/ol-maplibre-layer",
"description": "Geoblocks to render a maplibre GL JS map as an OpenLayers layer.",
"version": "1.0.2",
"license": "BSD-3-Clause",
"repository": "github:geoblocks/ol-maplibre-layer",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"/src",
"/lib",
"CHANGES.md"
],
"module": "lib/index.js",
"types": "lib/types/index.d.ts",
"targets": {
"demo": {
"source": "examples/demo.html",
"context": "browser",
"publicUrl": "./"
}
},
"alias": {
"buffer": false
},
"scripts": {
"eslint": "eslint src examples",
"start": "parcel serve examples/**/*.html",
"build": "parcel build --target demo",
"prepare": "tsc --pretty",
"typecheck": "tsc --pretty --noEmit",
"lint": "npm run eslint && npm run typecheck",
"doc": "typedoc",
"gh-pages": "rm -rf dist && npm run doc && npm run build && gh-pages -d dist"
},
"peerDependencies": {
"maplibre-gl": ">=2.0.4",
"ol": "^6 || ^7 || ^8 || ^9 || ^10"
},
"devDependencies": {
"@parcel/packager-ts": "2.13.2",
"@parcel/transformer-typescript-types": "2.13.2",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"eslint": "8.57.1",
"gh-pages": "6.2.0",
"maplibre-gl": "4.7.1",
"ol": "10.2.1",
"parcel": "2.13.2",
"typedoc": "0.27.1",
"typescript": "5.7.2"
}
}