-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"bin": "dist/cli.js",
"dependencies": {
"basic-auth": "2.0.1",
"commander": "14.0.3",
"http-status-codes": "2.3.0",
"logdown": "3.3.1",
"tsscmp": "1.0.6"
},
"description": "A simple HTTPS proxy for Node.js with authentication support.",
"devDependencies": {
"@types/basic-auth": "1.1.8",
"@types/tsscmp": "1.0.2",
"tsx": "4.21.0",
"typescript": "6.0.2"
},
"engines": {
"node": ">= 21"
},
"exports": "./dist/index.js",
"files": [
"dist"
],
"keywords": [
"cli",
"typescript"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "@ffflorian/https-proxy",
"readme": "https://github.com/ffflorian/node-packages#readme",
"repository": "https://github.com/ffflorian/node-packages.git",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"dist": "yarn clean && yarn build",
"start": "tsx src/cli.ts"
},
"type": "module",
"version": "1.20.1"
}