forked from map-gl-indoor/map-gl-indoor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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-gl-indoor",
"description": "A MapLibre plugin to visualize multi-level buildings",
"main": "dist/maplibre-gl-indoor.umd.js",
"module": "dist/maplibre-gl-indoor.es.js",
"types": "dist/maplibre-gl-indoor.d.ts",
"type": "module",
"files": [
"dist/*",
"src/"
],
"version": "0.0.21",
"scripts": {
"test": "jest .",
"lint": "eslint src --fix && tsc --noEmit && prettier --write .",
"fmt": "npm run lint",
"build": "rm -fr dist && npm run build-lib && npm run build-dts",
"prepublishOnly": "npm run lint && npm test && npm run build",
"build-lib": "tsc && vite build --emptyOutDir -c vite.lib.config.js",
"build-dts": "dts-bundle-generator -o dist/maplibre-gl-indoor.d.ts src/index.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/TUM-Dev/maplibre-gl-indoor.git"
},
"keywords": [
"indoor",
"building",
"multi-level",
"floors",
"geojson",
"map",
"maplibre"
],
"author": "Thibaud Michel, modified by Frank Elsinga",
"license": "MIT",
"devDependencies": {
"@maplibre/maplibre-gl-style-spec": "21.0.0",
"@eslint/js": "9.11.1",
"@types/eslint__js": "8.42.3",
"@types/geojson": "7946.0.14",
"@types/jest": "29.5.13",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"dts-bundle-generator": "9.5.1",
"eslint": "9.11.1",
"eslint-plugin-perfectionist": "3.7.0",
"events": "3.3.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.6.2",
"typescript-eslint": "8.7.0",
"vite": "5.4.7"
},
"dependencies": {
"@turf/bbox": "7.1.0",
"@turf/destination": "7.1.0",
"@turf/distance": "7.1.0",
"maplibre-gl": "4"
}
}