-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.06 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
43
44
45
{
"name": "get-user-ip",
"version": "1.0.3",
"description": "一个轻量、小巧的Node.js模块,用于检索请求用户的IP地址 | A lightweight, small Node.js module to retrieve the IP address of the requesting user",
"main": "get-user-ip.cjs",
"module": "get-user-ip.mjs",
"types": "get-user-ip.d.ts",
"type": "module",
"scripts": {
"test": "mocha"
},
"files": [
"get-user-ip.cjs",
"get-user-ip.mjs",
"get-user-ip.d.ts"
],
"exports": {
".": {
"import": "./get-user-ip.mjs",
"require": "./get-user-ip.cjs",
"types": "./get-user-ip.d.ts"
}
},
"keywords": [
"Request-IP",
"Get-Request-IP",
"User-IP",
"Get-User-IP",
"Client-IP",
"Get-Client-IP"
],
"author": "Lete乐特",
"license": "MIT",
"homepage": "https://github.com/Lete114/Get-User-IP#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Lete114/Get-User-IP.git"
},
"bugs": {
"url": "https://github.com/Lete114/Get-User-IP/issues"
},
"devDependencies": {
"mocha": "^9.1.3"
}
}