-
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.2 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.2 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-cli",
"version": "0.2.0",
"description": "CLI scaffolding tool for A2A agents",
"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/cli"
},
"homepage": "https://github.com/reaatech/a2a-reference-ts/tree/main/packages/cli#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"
}
},
"bin": {
"a2a": "./dist/index.js"
},
"files": ["dist"],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"test": "vitest run --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}