-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 KB
/
package.json
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
{
"name": "harperdb-proxy-transform",
"version": "1.0.0",
"author": {},
"repository": {
"type": "git",
"url": "git+https://github.com/Solara6/harperdb-proxy-transform.git"
},
"devDependencies": {
"@harperdb/code-guidelines": "^0.0.2",
"@types/bun": "latest",
"@types/yargs": "^17.0.33",
"prettier": "^3.4.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"description": "A HarperDB extension to proxy requests to an upstream origin server",
"files": [
"config.yaml",
"dist/"
],
"bin": {
"hdb-proxy": "./dist/cli.js"
},
"prettier": "@harperdb/code-guidelines/prettier",
"scripts": {
"build": "bun run build:extension && bun run build:cli",
"build:extension": "bun build src/extension.ts --outdir dist --target node",
"build:cli": "bun build src/cli.ts --outdir dist --target node",
"watch": "bun run build && chokidar 'src/**/*.ts' -c 'bun run build'",
"format": "prettier .",
"format:check": "npm run format -- --check",
"format:fix": "npm run format -- --write"
},
"type": "module",
"dependencies": {
"bun": "^1.1.41",
"chokidar-cli": "^3.0.0",
"io-ts": "^2.2.22",
"yaml": "^2.7.0",
"yargs": "^17.7.2",
"zod": "^3.24.1",
"zod-validation-error": "^3.4.0"
}
}