-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 851 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
{
"name": "maplibre-preload",
"version": "0.0.2",
"private": true,
"description": "Tiles preloader to smoothen the animations in MapLibre",
"author": {
"name": "Abel Vázquez Montoro",
"url": "https://abelvm.github.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/AbelVM/maplibre-preload.git"
},
"type": "module",
"source": "./src/index.js",
"main": "./dist/maplibre-preload.cjs",
"module": "./dist/maplibre-preload.module.js",
"exports": "./dist/maplibre-preload.modern.js",
"scripts": {
"build": "microbundle --external none",
"dev": "microbundle watch --external none"
},
"dependencies": {
"@mapbox/geo-viewport": "^0.4.1",
"@mapbox/point-geometry": "^0.1.0",
"@mapbox/tilebelt": "^1.0.2",
"error-stack-parser": "^2.0.6"
},
"devDependencies": {
"microbundle": "^0.13.3"
}
}