h3-words 1.0.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.

Potentially problematic release.


This version of h3-words might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/README.md +0 -0
  2. package/package.json +33 -0
package/README.md ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "h3-words",
3
+ "version": "1.0.0",
4
+ "description": "Encode H3 cell indices (res 0..12) as deterministic word.digit.word.word phrases",
5
+ "type": "module",
6
+ "main": "dist/src/index.js",
7
+ "types": "dist/src/index.d.ts",
8
+ "files": ["dist"],
9
+ "scripts": {
10
+ "build": "tsc && cp -r scripts dist/",
11
+ "build:wordlist": "node scripts/build-wordlist.js",
12
+ "test": "vitest run",
13
+ "test:update": "vitest run -u"
14
+ },
15
+ "dependencies": {
16
+ "h3-js": "^4.4.0"
17
+ },
18
+ "devDependencies": {
19
+ "badwords-list": "^2.0.1-4",
20
+ "double-metaphone": "^1.0.5",
21
+ "typescript": "^5.0.0",
22
+ "vitest": "^4.0.18",
23
+ "word-list": "^4.1.0",
24
+ "wordlist-english": "^1.2.1"
25
+ },
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/src/index.d.ts",
29
+ "import": "./dist/src/index.js",
30
+ "default": "./dist/src/index.js"
31
+ }
32
+ }
33
+ }