-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"version": "0.4.3",
"name": "@xmcl/nat-api",
"description": "Port mapping with UPnP and NAT-PMP",
"main": "./index.ts",
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"module": "./dist/index.mjs"
},
"scripts": {
"build:cjs": "esbuild --bundle --outfile=dist/index.js --format=cjs --platform=node --external:default-gateway --external:fast-xml-parser --target=es2020 index.ts",
"build:esm": "esbuild --bundle --outfile=dist/index.mjs --external:default-gateway --external:fast-xml-parser --format=esm --platform=node --target=es2020 index.ts",
"build:type": "tsc"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"default-gateway": "^6.0.3",
"fast-xml-parser": "^4.3.2",
"undici": "7.2.3"
},
"devDependencies": {
"@types/node": "^18.15.11",
"esbuild": "^0.17.16",
"typescript": "^5.3.3"
},
"author": {
"name": "Alex",
"email": "[email protected]"
},
"contributors": [
{
"name": "CI010",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/voxelum/nat-api.git"
},
"bugs": {
"url": "https://github.com/voxelum/nat-api/issues"
},
"homepage": "https://github.com/voxelum/nat-api",
"keywords": [
"nat",
"api",
"upnp",
"pmp",
"nat-pmp",
"holepunch",
"port",
"forwarding",
"map",
"mapping"
]
}