-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 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
{
"name": "bungate",
"version": "1.0.0",
"license": "MIT",
"description": "A high-performance HTTP gateway for Bun, designed for microservices and API gateways.",
"keywords": [
"javascript",
"typescript",
"bun",
"gateway",
"microservices",
"api-gateway",
"http",
"performance"
],
"scripts": {
"test": "bun test",
"test:integration": "bun test test/integration.test.ts",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"actions": "DOCKER_HOST=$(docker context inspect --format '{{.Endpoints.docker.Host}}') act",
"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",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.6.2"
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"README.md",
"LICENSE"
],
"peerDependencies": {
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/bungate.git"
},
"dependencies": {
"0http-bun": "^1.2.2",
"fetch-gate": "^1.1.0",
"jose": "^6.1.1",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"prom-client": "^15.1.3"
}
}