geohash-kit 1.4.2 → 1.5.0
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/README.md +8 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -244,6 +244,14 @@ Performance summary:
|
|
|
244
244
|
|
|
245
245
|
For detailed performance analysis, device comparisons, and optimization guidance, see [docs/BENCHMARKS.md](./docs/BENCHMARKS.md).
|
|
246
246
|
|
|
247
|
+
## Android Compatibility
|
|
248
|
+
|
|
249
|
+
For Kotlin/Android parity implementations, use the compatibility contract and versioned vectors:
|
|
250
|
+
|
|
251
|
+
- [docs/android-compat.md](./docs/android-compat.md)
|
|
252
|
+
- [vectors/schema.json](./vectors/schema.json)
|
|
253
|
+
- `npm run vectors:check` (run after `npm run build`)
|
|
254
|
+
|
|
247
255
|
## For AI Assistants
|
|
248
256
|
|
|
249
257
|
See [llms.txt](./llms.txt) for a concise API summary, or [llms-full.txt](./llms-full.txt) for the complete reference with examples.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geohash-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
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",
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"test": "vitest run",
|
|
29
29
|
"test:watch": "vitest",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
|
-
"bench": "vitest bench"
|
|
31
|
+
"bench": "vitest bench",
|
|
32
|
+
"vectors:check": "node ./scripts/check-vectors.mjs"
|
|
32
33
|
},
|
|
33
34
|
"keywords": [
|
|
34
35
|
"geohash",
|