-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 927 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 927 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
30
31
32
33
34
35
36
37
38
{
"name": "ip-du",
"version": "1.0.0",
"description": "IP-Du — A premium IP address geolocation platform with dual deployment support for Cloudflare Workers and Node.js",
"type": "module",
"main": "src/server.js",
"scripts": {
"dev": "node --watch src/server.js",
"dev:node": "node --watch src/server.js",
"dev:cf": "wrangler dev src/worker.js",
"start": "node src/server.js",
"deploy:cf": "wrangler deploy",
"update-db": "node scripts/update-db.js",
"upload-r2": "node scripts/upload-r2.js"
},
"keywords": [
"ip",
"geolocation",
"ip-lookup",
"geoip",
"cloudflare-workers",
"ipv4",
"ipv6"
],
"author": "",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.13.8",
"hono": "^4.7.5",
"mmdb-lib": "^2.1.1"
},
"devDependencies": {
"wrangler": "^4.14.0"
},
"engines": {
"node": ">=20"
}
}