@a2anet/a2a-utils 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +40 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @a2anet/a2a-utils
2
+
3
+ JavaScript/TypeScript implementation. See the [project README](../README.md) for details.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@a2anet/a2a-utils",
3
+ "version": "0.1.0",
4
+ "description": "A collection of utilities for discovering, communicating, and authenticating with A2A Servers",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.js"
10
+ }
11
+ },
12
+ "main": "./dist/index.js",
13
+ "types": "./dist/index.d.ts",
14
+ "files": ["dist"],
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "check": "biome check .",
18
+ "check:fix": "biome check --write .",
19
+ "typecheck": "tsc --noEmit",
20
+ "test": "bun test",
21
+ "test:coverage": "bun test --coverage"
22
+ },
23
+ "keywords": ["a2a", "agent-to-agent", "utilities"],
24
+ "author": "A2A Net <hello@a2anet.com>",
25
+ "license": "Apache-2.0",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/a2anet/a2a-utils.git"
29
+ },
30
+ "bugs": {
31
+ "url": "https://github.com/a2anet/a2a-utils/issues"
32
+ },
33
+ "homepage": "https://github.com/a2anet/a2a-utils#readme",
34
+ "devDependencies": {
35
+ "@biomejs/biome": "^1.9.0",
36
+ "@types/bun": "latest",
37
+ "typescript": "^5.7.0"
38
+ },
39
+ "trustedDependencies": ["@biomejs/biome"]
40
+ }