-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.14 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.14 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
{
"name": "agentstack-a2a-proxy",
"version": "0.0.1",
"bin": {
"agentstack-a2a-proxy": "dist/cli.js"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"scripts": {
"build": "tsc",
"cli": "tsx src/cli.ts",
"clean": "rm -rf dist",
"check-license": "addlicense -check -l apache -s=only -c '© BeeAI a Series of LF Projects, LLC' $(find src -name '*.ts' -o -name '*.js') $(find dist -name '*.ts' -o -name '*.js')",
"fix-license": "addlicense -l apache -s=only -c '© BeeAI a Series of LF Projects, LLC' $(find src -name '*.ts' -o -name '*.js') $(find dist -name '*.ts' -o -name '*.js')"
},
"author": "",
"dependencies": {
"commander": "^14.0.1",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"node-fetch": "^2.7.0",
"tsx": "^4.20.6",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/commander": "^2.12.5",
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/node-fetch": "^2.6.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}