forked from sindresorhus/ipify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 743 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 743 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
39
40
41
42
43
{
"name": "ipify",
"version": "7.0.0",
"description": "Get your public IP address",
"license": "MIT",
"repository": "sindresorhus/ipify",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "xo && node --test && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"ip",
"ipv6",
"ipv4",
"address",
"public",
"external",
"own"
],
"devDependencies": {
"is-ip": "^5.0.1",
"tsd": "^0.33.0",
"xo": "^1.2.2"
}
}