-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
executable file
·41 lines (41 loc) · 934 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
34
35
36
37
38
39
40
41
{
"name": "@elfalem/leaflet-curve",
"version": "0.9.2",
"description": "A Leaflet plugin for drawing Bézier curves and other complex shapes.",
"main": "dist/leaflet.curve.js",
"types": "types/leaflet.curve.d.ts",
"scripts": {
"build": "webpack"
},
"files": [
"dist/leaflet.curve.js",
"types/leaflet.curve.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/elfalem/Leaflet.curve.git"
},
"keywords": [
"leaflet",
"Bezier",
"curve",
"SVG"
],
"author": "elfalem",
"license": "MIT",
"bugs": {
"url": "https://github.com/elfalem/Leaflet.curve/issues"
},
"homepage": "https://github.com/elfalem/Leaflet.curve#readme",
"devDependencies": {
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"leaflet": "^1.1.0"
},
"optionalDependencies": {
"@tweenjs/tween.js": "^17.2.0"
},
"dependencies": {}
}