-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 924 Bytes
/
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
{
"name": "js-frp",
"version": "0.2.1",
"description": "A library written in TypeScript for managing FRP instances. FRP is a fast reverse proxy to help you expose a local server behind a NAT or firewall to the Internet.",
"main": "dist",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"author": "PondWader",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PondWader/js-frp.git"
},
"keywords": [
"frp",
"fast-reverse-proxy",
"ts"
],
"bugs": {
"url": "https://github.com/PondWader/js-frp/issues"
},
"homepage": "https://github.com/PondWader/js-frp#readme",
"devDependencies": {
"@types/decompress": "^4.2.4",
"@types/ini": "^1.3.31",
"@types/node": "^18.0.3",
"typescript": "^4.7.4"
},
"dependencies": {
"decompress": "^4.2.1",
"ini": "^3.0.0",
"node-downloader-helper": "^2.1.1"
}
}