-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.89 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
56
57
58
59
60
61
62
{
"name": "@maplibre/maplibre-gl-inspect",
"version": "1.7.0",
"description": "Maplibre GL JS plugin for inspecting vector data",
"main": "dist/maplibre-gl-inspect.js",
"module": "dist/maplibre-gl-inspect.mjs",
"typings": "dist/maplibre-gl-inspect.d.ts",
"type": "module",
"scripts": {
"lint": "eslint lib index.ts",
"watch": "rollup --configPlugin @rollup/plugin-typescript -c --watch",
"build": "rollup --configPlugin @rollup/plugin-typescript -c",
"build-css": "mkdir -p dist && cp index.css dist/maplibre-gl-inspect.css",
"build-dist": "npm run build && npm run build-css",
"start": "st --no-cache -H 0.0.0.0 --port 65432 .",
"docs": "typedoc --entryPoints index.ts --out docs/API --treatWarningsAsErrors && node ./examples/generate-docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maplibre/maplibre-gl-inspect.git"
},
"keywords": [
"maplibre",
"gis",
"vector",
"leaflet",
"gl"
],
"author": "Andrew Calcutt(Forked from mapbox-gl-inspect by Lukas Martinelli), Harel Mazor",
"license": "BSD-3-Clause",
"files": [
"dist",
"lib"
],
"bugs": {
"url": "https://github.com/maplibre/maplibre-gl-inspect/issues"
},
"homepage": "https://github.com/maplibre/maplibre-gl-inspect#readme",
"dependencies": {
"lodash.isequal": "^4.5.0",
"randomcolor": "^0.6.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/lodash.isequal": "^4.5.8",
"@types/randomcolor": "^0.5.9",
"eslint": "^9.14.0",
"maplibre-gl": "^4.7.1",
"rollup": "^4.24.3",
"rollup-plugin-dts": "^6.1.1",
"st": "^3.0.1",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"peerDependencies": {
"maplibre-gl": ">3.0.0"
}
}