-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "@reaatech/a2a-reference-core",
"version": "0.2.0",
"description": "Canonical A2A protocol types, schemas, and validation",
"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/core"
},
"homepage": "https://github.com/reaatech/a2a-reference-ts/tree/main/packages/core#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": {
"jose": "^6.0.10",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}