Skip to content

Commit

Permalink
Feature/no ref/config package (#1)
Browse files Browse the repository at this point in the history
* feat: update package configs

* chore: update readme
  • Loading branch information
krozamdev authored Sep 22, 2024
1 parent db9c9ac commit 644b0b3
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea
node_modules
node_modules
*.tgz
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
*.log
*.ts
src/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Mohammad ikrom

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
8 changes: 3 additions & 5 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
📦🤗 npm-friendly fork of
[jawj/OverlappingMarkerSpiderfier](https://github.com/jawj/OverlappingMarkerSpiderfier).

Overlapping Marker Spiderfier for Leaflet
Overlapping Marker Spiderfier for Leaflet support ES6 Module
=========================================

**Ever noticed how, in [Google Earth](http://earth.google.com), marker
Expand All @@ -18,9 +18,7 @@ spiral.

The compiled code has no dependencies beyond Leaflet. And it's under 3K
when compiled out of
[CoffeeScript](http://jashkenas.github.com/coffee-script/), minified
with Google's [Closure
Compiler](http://code.google.com/closure/compiler/) and gzipped.
[TypeScript](https://www.typescriptlang.org)

It's a port of my [original library for the Google Maps
API](https://github.com/jawj/OverlappingMarkerSpiderfier). (Since the
Expand Down Expand Up @@ -54,7 +52,7 @@ Download [the compiled, minified JS
source](https://unpkg.com/overlapping-marker-spiderfier-leaflet@latest).

Or download it from npm:
`npm isntall -S @krozamdev/overlapping-marker-spiderfier` or
`npm install -S @krozamdev/overlapping-marker-spiderfier` or
`yarn add @krozamdev/overlapping-marker-spiderfier`

How to use
Expand Down
16 changes: 12 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@krozamdev/overlapping-marker-spiderfier",
"version": "0.2.7",
"version": "0.2.8",
"description": "Deals with overlapping markers in the Leaflet maps API, Google Earth-style",
"keywords": [
"overlapping marker",
Expand All @@ -20,12 +20,20 @@
"leaflet": "^1.7.1"
},
"devDependencies": {
"typescript": "^4.5.4",
"@types/leaflet": "^1.7.6"
"@types/leaflet": "^1.7.6",
"typescript": "^4.5.4"
},
"scripts": {
"build": "tsc"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"author": "George MacKerron <[email protected]> (http://mackerron.com)",
"license": "MIT"
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}

0 comments on commit 644b0b3

Please sign in to comment.