-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "@reaatech/a2a-reference-server",
"version": "0.2.0",
"description": "A2A server framework with Express and Hono adapters",
"license": "MIT",
"author": "Rick Somers <rick@reaatech.com> (https://reaatech.com)",
"repository": {
"type": "git",
"url": "https://github.com/reaatech/a2a-reference-ts.git",
"directory": "packages/server"
},
"homepage": "https://github.com/reaatech/a2a-reference-ts/tree/main/packages/server#readme",
"bugs": {
"url": "https://github.com/reaatech/a2a-reference-ts/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": ["dist"],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist"
},
"dependencies": {
"@reaatech/a2a-reference-auth": "workspace:*",
"@reaatech/a2a-reference-core": "workspace:*",
"@reaatech/a2a-reference-observability": "workspace:*",
"@reaatech/a2a-reference-persistence": "workspace:*",
"express": "^5.1.0",
"hono": "^4.12.18",
"ioredis": "^5.10.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/supertest": "^7.2.0",
"supertest": "^7.2.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}