-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "mapbox-collision-boxes",
"version": "0.2.0",
"description": "Utility to handle Mapbox collision boxes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/index.js.map"
],
"scripts": {
"build": "rollup -c && api-extractor run --local",
"build:doc": "npm run build && api-documenter markdown --input-folder temp --output-folder api-docs/markdown",
"type-check": "tsc --noEmit",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Mapbox"
],
"author": "Kikuo Emoto <[email protected]>",
"license": "MIT",
"devDependencies": {
"@mapbox/unitbezier": "^0.0.1",
"@microsoft/api-documenter": "^7.23.14",
"@microsoft/api-extractor": "^7.38.5",
"@rollup/plugin-typescript": "^8.5.0",
"@types/geojson": "^7946.0.13",
"@types/mapbox-gl": "^2.7.19",
"mapbox-gl": "^3.0.1",
"rollup": "^2.79.1",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"mapbox-gl": ">= 2 < 4"
}
}