-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "mapbox-gl-draw-scale-rotate",
"version": "1.1.0",
"description": "A custom mode for MapboxGL Draw to scale and rotate features",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node scripts/build.js",
"watch": "yarn build --watch",
"prebuild": "rimraf dist",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/wassim-k/mapbox-gl-draw-scale-rotate.git"
},
"keywords": [
"mapbox",
"mapbox-gl",
"mapbox-gl-draw",
"geojson"
],
"author": "Wassim K",
"license": "MIT",
"homepage": "https://github.com/wassim-k/mapbox-gl-draw-scale-rotate",
"files": [
"dist"
],
"devDependencies": {
"@mapbox/mapbox-gl-draw": "^1.4.1",
"@types/mapbox__mapbox-gl-draw": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"esbuild": "^0.17.16",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-d.ts": "^1.1.0",
"eslint": "^8.38.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@mapbox/mapbox-gl-draw": ">=1.4.0"
},
"dependencies": {
"@turf/bearing": "^6.5.0",
"@turf/center": "^6.5.0",
"@turf/destination": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/midpoint": "^6.5.0",
"@turf/transform-rotate": "^6.5.0",
"@turf/transform-scale": "^6.5.0",
"@turf/turf": "^6.5.0"
}
}