-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.1 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.1 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
43
44
45
46
47
48
49
50
51
52
{
"name": "web-proxy-cli",
"version": "1.0.2",
"description": "A simple CLI tool for creating CORS-enabled proxy servers",
"main": "dist/server.js",
"type": "module",
"bin": {
"proxy": "./bin/proxy.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsup --watch",
"build": "tsup",
"start": "node dist/cli.js",
"prepublishOnly": "pnpm build"
},
"keywords": [
"proxy",
"cors",
"cli",
"web",
"http",
"https",
"development"
],
"license": "MIT",
"packageManager": "pnpm@10.15.1",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.4",
"@types/node": "^24.9.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cors": "^2.8.5",
"express": "^5.1.0",
"gradient-string": "^3.0.0"
},
"author": "xie392 <ymzdjiang@qq.com> (https://xie392.cn)",
"repository": {
"type": "git",
"url": "https://github.com/xie392/create-xie392-template.git"
}
}