geohash-kit 1.5.1 → 1.5.2

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT Licence
2
2
 
3
- Copyright (c) 2026 TheCryptoDonkey
3
+ Copyright (c) 2026 forgesworn
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -3,12 +3,12 @@
3
3
  **The modern TypeScript geohash toolkit — encode, decode, cover polygons, and discover location-based Nostr events.**
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/geohash-kit)](https://www.npmjs.com/package/geohash-kit)
6
- [![licence](https://img.shields.io/npm/l/geohash-kit)](https://github.com/TheCryptoDonkey/geohash-kit/blob/main/LICENSE)
6
+ [![licence](https://img.shields.io/npm/l/geohash-kit)](https://github.com/forgesworn/geohash-kit/blob/main/LICENSE)
7
7
  ![zero deps](https://img.shields.io/badge/dependencies-0-brightgreen)
8
8
  ![TypeScript](https://img.shields.io/badge/TypeScript-native-blue)
9
9
  [![Nostr](https://img.shields.io/badge/Nostr-Zap%20me-purple)](https://primal.net/p/npub1mgvlrnf5hm9yf0n5mf9nqmvarhvxkc6remu5ec3vf8r0txqkuk7su0e7q2)
10
10
 
11
- **[Interactive Demo](https://thecryptodonkey.github.io/geohash-kit/)** — try every API function on a live map.
11
+ **[Interactive Demo](https://forgesworn.github.io/geohash-kit/)** — try every API function on a live map.
12
12
 
13
13
  ## Why geohash-kit?
14
14
 
@@ -258,11 +258,11 @@ See [llms.txt](./llms.txt) for a concise API summary, or [llms-full.txt](./llms-
258
258
 
259
259
  ## Licence
260
260
 
261
- [MIT](https://github.com/TheCryptoDonkey/geohash-kit/blob/main/LICENSE)
261
+ [MIT](https://github.com/forgesworn/geohash-kit/blob/main/LICENSE)
262
262
 
263
263
  ## Support
264
264
 
265
- For issues and feature requests, see [GitHub Issues](https://github.com/TheCryptoDonkey/geohash-kit/issues).
265
+ For issues and feature requests, see [GitHub Issues](https://github.com/forgesworn/geohash-kit/issues).
266
266
 
267
267
  If you find geohash-kit useful, consider sending a tip:
268
268
 
package/llms-full.txt CHANGED
@@ -4,8 +4,8 @@
4
4
 
5
5
  Zero dependencies. ESM-only. TypeScript native.
6
6
 
7
- Repository: https://github.com/TheCryptoDonkey/geohash-kit
8
- Interactive demo: https://thecryptodonkey.github.io/geohash-kit/
7
+ Repository: https://github.com/forgesworn/geohash-kit
8
+ Interactive demo: https://forgesworn.github.io/geohash-kit/
9
9
  Licence: MIT
10
10
 
11
11
  ## Install
package/llms.txt CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > Working with geohashes in TypeScript? Existing libraries are outdated (ngeohash: last published 2018), lack polygon coverage, or pull in heavy dependencies. geohash-kit is a zero-dependency, modern TypeScript geohash toolkit — encode, decode, cover polygons with adaptive multi-precision subdivision, and build Nostr g-tag filters.
4
4
 
5
- Interactive demo: https://thecryptodonkey.github.io/geohash-kit/
5
+ Interactive demo: https://forgesworn.github.io/geohash-kit/
6
6
 
7
7
  ESM-only. Three subpath exports: `geohash-kit/core`, `geohash-kit/coverage`, `geohash-kit/nostr`.
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geohash-kit",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Modern TypeScript geohash toolkit — encode, decode, cover polygons, and build Nostr filters",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -50,27 +50,31 @@
50
50
  "latitude",
51
51
  "longitude",
52
52
  "mapping",
53
- "geo"
53
+ "geo",
54
+ "encode",
55
+ "decode",
56
+ "bounding-box",
57
+ "point-in-polygon"
54
58
  ],
55
- "author": "TheCryptoDonkey",
59
+ "author": "forgesworn",
56
60
  "license": "MIT",
57
61
  "sideEffects": false,
58
62
  "engines": {
59
63
  "node": ">=18"
60
64
  },
61
- "homepage": "https://thecryptodonkey.github.io/geohash-kit/",
65
+ "homepage": "https://forgesworn.github.io/geohash-kit/",
62
66
  "repository": {
63
67
  "type": "git",
64
- "url": "git+https://github.com/TheCryptoDonkey/geohash-kit.git"
68
+ "url": "git+https://github.com/forgesworn/geohash-kit.git"
65
69
  },
66
70
  "devDependencies": {
67
71
  "@semantic-release/changelog": "^6.0.3",
68
72
  "@semantic-release/git": "^10.0.1",
69
73
  "@semantic-release/github": "^12.0.6",
70
- "@semantic-release/npm": "^13.1.4",
74
+ "@semantic-release/npm": "^13.1.5",
71
75
  "semantic-release": "^25.0.3",
72
76
  "typescript": "^5.7.0",
73
- "vitest": "^3.0.0"
77
+ "vitest": "^4.1.0"
74
78
  },
75
79
  "files": [
76
80
  "dist",