-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.92 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.92 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"author": "IPGeolocation.io",
"name": "ip-geolocation-api-javascript-sdk",
"version": "3.0.1",
"description": "Official JavaScript SDK for the IPGeolocation IP Location API with single and bulk lookup, typed JSON, and raw JSON/XML support.",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IPGeolocation/ip-geolocation-api-javascript-sdk.git"
},
"bugs": {
"url": "https://github.com/IPGeolocation/ip-geolocation-api-javascript-sdk/issues"
},
"homepage": "https://github.com/IPGeolocation/ip-geolocation-api-javascript-sdk#readme",
"keywords": [
"ipgeolocation",
"geolocation",
"ip",
"ip-location",
"ip-geolocation",
"ip-lookup",
"api",
"sdk",
"javascript",
"nodejs",
"fetch",
"timezone",
"hostname",
"user-agent",
"asn",
"security",
"vpn-detection",
"proxy-detection",
"bulk-lookup"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"clean": "rm -rf dist coverage",
"typecheck": "tsc --noEmit",
"test": "vitest run tests/unit",
"test:watch": "vitest tests/unit",
"test:coverage": "vitest run tests/unit --coverage",
"test:live": "vitest run tests/live/live-integration.test.ts",
"test:parity": "vitest run tests/live/live-field-parity.test.ts"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}