-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 KB
/
package.json
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
{
"name": "node-ipdox",
"version": "1.0.4",
"description": "node-ipdox is a Node.js library for GeoIP lookup, leveraging various free GeoIP APIs. It provides a unified response format and incorporates local caching to minimize duplicate requests.",
"author": "Mikel Calvo <[email protected]> (www.mikelcalvo.net)",
"keywords": [
"geoip",
"ip lookup",
"ipdoxxing",
"ipdox",
"ip",
"ip address",
"ip address lookup"
],
"license": "ISC",
"readmeFilename": "README.md",
"homepage": "https://github.com/mikelcalvo/ipdox#readme",
"bugs": {
"url": "https://github.com/mikelcalvo/ipdox/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"**/*.ts\" \"**/*.js\" \"**/*.json\"",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikelcalvo/node-ipdox.git"
},
"dependencies": {
"axios": "1.7.2",
"lru-cache": "^10.2.2"
},
"devDependencies": {
"@types/node": "20.14.2",
"prettier": "3.3.2",
"typescript": "^5.4.5"
}
}