-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.54 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@gittrends-app/github-proxy-server",
"version": "12.2.0",
"exports": "./dist/cli.js",
"engines": {
"node": ">=24"
},
"type": "module",
"repository": "git@github.com:gittrends-app/github-proxy-server.git",
"author": "Hudson Silva Borges <hudsonsilbor@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node dist/cli.js",
"dev": "tsx watch src/cli.ts",
"dev-no-reload": "tsx src/cli.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"commit": "git-cz",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format --write src",
"build": "shx rm -rf dist && tsup-node src/cli.ts --format esm --sourcemap --minify",
"prepare": "husky",
"release": "standard-version",
"np": "np --no-publish --yarn --contents dist"
},
"bin": {
"github-proxy-server": "./dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"architecture.png"
],
"dependencies": {
"basic-auth": "^2.0.1",
"chalk": "5.6.2",
"commander": "^14.0.2",
"compression": "^1.8.1",
"consola": "^3.4.2",
"dayjs": "^1.11.19",
"dotenv-override-true": "^6.2.2",
"express": "^5.2.1",
"http-status-codes": "^2.3.0",
"https-proxy-agent": "^7.0.6",
"ip": "^2.0.1",
"lodash": "^4.17.21",
"p-limit": "^7.2.0",
"p-queue": "^8.0.1",
"pino": "^10.2.0",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"swagger-stats": "^0.99.7",
"table": "^6.9.0",
"undici": "^7.18.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@tsconfig/node20": "^20.1.8",
"@types/async": "^3.2.25",
"@types/basic-auth": "^1.1.8",
"@types/compression": "^1.8.1",
"@types/ip": "^1.1.3",
"@types/lodash": "^4.17.23",
"@types/node": "^25.0.9",
"@types/supertest": "^6.0.3",
"@types/swagger-stats": "^0.95.11",
"@vitest/coverage-v8": "^4.0.17",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "^9.1.7",
"nock": "^14.0.10",
"np": "^10.2.0",
"shx": "^0.4.0",
"standard-version": "^9.5.0",
"supertest": "^7.2.2",
"tmp-promise": "^3.0.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"prom-client": "14"
}
}