-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "fetch-gate",
"version": "1.1.0",
"description": "A fetch-based HTTP proxy library optimized for Bun runtime with hooks, circuit breakers and timeouts",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"lib/**/*",
"README.md",
"LICENSE"
],
"keywords": ["gateway", "proxy", "fetch", "http", "circuit-breaker", "timeout", "hooks", "bun", "typescript"],
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"scripts": {
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test": "bun test --coverage tests/*.test.ts",
"test:watch": "bun test --watch tests/*.test.ts",
"lint": "bun run type-check",
"type-check": "tsc --noEmit",
"build": "tsc --project tsconfig.build.json",
"build:bun": "bun build src/index.ts --outdir lib --target bun",
"clean": "rm -rf lib/",
"prepublishOnly": "bun run clean && bun run build",
"example:benchmark": "bun run examples/local-gateway-server.ts",
"deploy": "bun run prepublishOnly && bun publish",
"actions": "DOCKER_HOST=$(docker context inspect --format '{{.Endpoints.docker.Host}}') act"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/fetch-proxy.git"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.16.3",
"prettier": "^3.6.2"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"pino": "^9.7.0"
}
}