forked from a2aproject/a2a-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "@a2a-js/sdk",
"version": "0.2.2",
"description": "Server & Client SDK for Agent2Agent protocol",
"repository": "google-a2a/a2a-js.git",
"engines": {
"node": ">=18"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"type": "module",
"files": [
"build/src",
"!build/src/**/*.map",
"README.md"
],
"devDependencies": {
"@genkit-ai/googleai": "^1.8.0",
"@genkit-ai/vertexai": "^1.8.0",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.14",
"@types/sinon": "^17.0.4",
"c8": "^10.1.3",
"chai": "^5.2.0",
"genkit": "^1.8.0",
"gts": "^6.0.2",
"json-schema-to-typescript": "^15.0.4",
"mocha": "^11.6.0",
"sinon": "^20.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"scripts": {
"clean": "gts clean",
"build": "tsc -p .",
"pretest": "npm run build",
"test": "mocha build/test/**/*.js",
"coverage": "c8 npm run test",
"generate": "curl https://raw.githubusercontent.com/google-a2a/A2A/refs/heads/main/specification/json/a2a.json > spec.json && node scripts/generateTypes.js && rm spec.json",
"sample:cli": "tsx src/samples/cli.ts",
"sample:movie-agent": "tsx src/samples/agents/movie-agent/index.ts"
},
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"uuid": "^11.1.0"
}
}