-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "@blendsdk/proxybuilder",
"version": "2.1.7",
"description": "Nginx reverse proxy configuration builder with SSL, load balancing, and maintenance mode",
"main": "dist/index.js",
"bin": {
"proxybuilder": "./dist/index.js"
},
"scripts": {
"build": "tsc && mkdir -p dist/commands && rm -rf dist/templates && cp -r src/templates dist/templates",
"watch": "tsc -w",
"dev": "node ./dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"prepublishOnly": "yarn clean && yarn build"
},
"keywords": [
"nginx",
"proxy",
"reverse-proxy",
"ssl",
"letsencrypt",
"certbot",
"load-balancer"
],
"author": "BlendSDK",
"license": "ISC",
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/**/*"
],
"dependencies": {
"yargs": "^17.7.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/yargs": "^17.0.0",
"standard-version": "^9.5.0",
"typescript": "^5.4.0",
"vitest": "^4.1.1"
}
}