-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
66 lines (66 loc) · 1.39 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
61
62
63
64
65
66
{
"name": "straightforward",
"version": "4.2.2",
"description": "A straightforward forward-proxy.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"repository": "berstend/straightforward",
"author": "berstend",
"license": "MIT",
"bugs": {
"url": "https://github.com/berstend/straightforward/issues"
},
"engines": {
"node": ">=16"
},
"bin": {
"straightforward": "./cli.js"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"watch": "npm run build -- --watch src",
"test": "ava -v",
"ts": "node -r esbuild-register",
"prepublishOnly": "npm run build"
},
"keywords": [
"straightforward",
"forward-proxy",
"proxy",
"squid",
"self-contained",
"http",
"https",
"wss",
"connect",
"request",
"cli"
],
"dependencies": {
"debug": "^4.3.4",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.11.9",
"ava": "^5.1.0",
"esbuild": "^0.15.14",
"esbuild-register": "^3.4.1",
"got-cjs": "^12.5.4",
"hpagent": "^1.2.0",
"proxy-agent": "^5.0.0",
"tsup": "^6.5.0",
"typescript": "^4.9.3"
}
}