-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1012 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1012 Bytes
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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"bin": "dist/cli.js",
"dependencies": {
"basic-auth": "2.0.1",
"commander": "13.1.0",
"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",
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">= 18.0"
},
"exports": "./dist/index.js",
"files": [
"dist"
],
"keywords": [
"cli",
"typescript"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "@ffflorian/https-proxy",
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/https-proxy",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"start": "node --loader ts-node/esm src/cli.ts"
},
"type": "module",
"version": "1.12.2"
}