-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.5 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "geolookup-plugin",
"version": "0.1.10",
"description": "A Harper plugin for fast, tier-based reverse geocoding of US coordinates using H3 spatial indexing.",
"license": "Apache-2.0",
"type": "module",
"keywords": [
"geocoding",
"h3",
"harper",
"reverse-geocoding",
"geolookup"
],
"author": {
"name": "Kyle Bernhardy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kylebernhardy/geolookup.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": "./config.yaml"
},
"engines": {
"node": ">=24.0.0",
"harperdb": ">=4.7.0"
},
"files": [
"dist/",
"schemas/",
"data/",
"config.yaml",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc || true",
"agent:run": "npx -y @harperfast/agent@latest",
"agent:skills:update": "npx -y skills@latest add harperfast/skills --all --yes",
"start": "harperdb run .",
"dev": "harperdb dev .",
"lint": "eslint .",
"format": "prettier --write .",
"test": "node --test test/*.test.js",
"test:watch": "node --watch --test test/*.test.js",
"deploy": "dotenv -- npm run deploy:component",
"deploy:component": "harperdb deploy_component . restart=rolling replicated=true"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"dotenv-cli": "^11.0.0",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"harperdb": "^4.7.20",
"prettier": "^3.8.1"
},
"dependencies": {
"h3-js": "^4.4.0"
}
}