leaflet-butter-smooth-zoom 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -2
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "leaflet-butter-smooth-zoom",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Butter-smooth wheel zoom handler for Leaflet.",
|
|
5
|
+
"homepage": "https://github.com/hexadeciman/leaflet-butter-smooth-zoom#readme",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/hexadeciman/leaflet-butter-smooth-zoom.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/hexadeciman/leaflet-butter-smooth-zoom/issues"
|
|
12
|
+
},
|
|
5
13
|
"type": "module",
|
|
6
14
|
"main": "dist/index.cjs",
|
|
7
15
|
"module": "dist/index.js",
|
|
@@ -21,7 +29,10 @@
|
|
|
21
29
|
],
|
|
22
30
|
"scripts": {
|
|
23
31
|
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
24
|
-
"dev": "tsup src/index.ts --format esm --dts --watch"
|
|
32
|
+
"dev": "tsup src/index.ts --format esm --dts --watch",
|
|
33
|
+
"release:patch": "npm version patch && npm run build && npm publish --access public",
|
|
34
|
+
"release:minor": "npm version minor && npm run build && npm publish --access public",
|
|
35
|
+
"release:major": "npm version major && npm run build && npm publish --access public"
|
|
25
36
|
},
|
|
26
37
|
"peerDependencies": {
|
|
27
38
|
"leaflet": "^1.9.4"
|