-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 827 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 827 Bytes
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
{
"name": "geolookup-example",
"version": "0.1.0",
"description": "Example Harper application using the geolookup plugin",
"license": "Apache-2.0",
"private": true,
"type": "module",
"author": {
"name": "Kyle Bernhardy"
},
"engines": {
"node": ">=24.0.0",
"harperdb": ">=4.7.0"
},
"scripts": {
"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 .",
"cli": "npm run dev --prefix cli",
"deploy": "dotenv -- npm run deploy:component",
"deploy:component": "harperdb deploy_component . restart=rolling replicated=true"
},
"dependencies": {
"geolookup-plugin": "^0.1.10"
}
}