@automattic/agenttic-client 0.1.2 → 0.1.3

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 (1) hide show
  1. package/package.json +80 -81
package/package.json CHANGED
@@ -1,82 +1,81 @@
1
1
  {
2
- "name": "@automattic/agenttic-client",
3
- "version": "0.1.2",
4
- "type": "module",
5
- "description": "A TypeScript client library for A2A (Agent2Agent) protocol communication",
6
- "main": "dist/index.js",
7
- "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js"
13
- },
14
- "./mocks": {
15
- "types": "./dist/mocks/index.d.ts",
16
- "import": "./dist/mocks/index.js"
17
- }
18
- },
19
- "files": [
20
- "dist",
21
- "README.md"
22
- ],
23
- "scripts": {
24
- "build": "pnpm run clean && tsup src/index.ts src/mocks/index.ts --format esm --target node18 && tsc --project tsconfig.json --emitDeclarationOnly",
25
- "build:no-splitting": "pnpm run clean && tsup src/index.ts --format esm --target node18 --splitting=false && tsc --project tsconfig.json --emitDeclarationOnly",
26
- "dev": "tsup src/index.ts --format esm --watch",
27
- "dev:no-splitting": "tsup src/index.ts --format esm --target node18 --splitting=false --watch",
28
- "clean": "rm -rf dist",
29
- "type-check": "tsc --noEmit",
30
- "lint": "wp-scripts lint-js src --ext .ts,.tsx",
31
- "lint:fix": "wp-scripts lint-js src --ext .ts,.tsx --fix",
32
- "test": "vitest run",
33
- "prepublishOnly": "pnpm run build",
34
- "i18n:extract": "npx --no-install @wordpress/i18n-command make-pot src --output=languages/a8c-agenttic.pot --domain=a8c-agenttic",
35
- "i18n:update": "npx --no-install @wordpress/i18n-command make-json languages --domain=a8c-agenttic"
36
- },
37
- "keywords": [
38
- "a2a",
39
- "agent2agent",
40
- "agenttic",
41
- "client",
42
- "typescript",
43
- "ai",
44
- "agent",
45
- "protocol"
46
- ],
47
- "author": "Automattic",
48
- "license": "MIT",
49
- "engines": {
50
- "node": ">=18.0.0"
51
- },
52
- "devDependencies": {
53
- "@wordpress/api-fetch": "^7.0.0",
54
- "tsup": "^8.0.0",
55
- "typescript": "^5.0.0",
56
- "unified": "^11.0.5",
57
- "vitest": "^1.0.0"
58
- },
59
- "dependencies": {
60
- "@automattic/charts": "^0.14.0",
61
- "@types/react": "^18.0.0",
62
- "@visx/xychart": "^3.12.0",
63
- "@wordpress/element": "^6.2.0",
64
- "@wordpress/i18n": "^6.1.0",
65
- "react": "^18.0.0",
66
- "react-markdown": "^10.1.0",
67
- "remark-gfm": "^4.0.1"
68
- },
69
- "peerDependencies": {
70
- "@wordpress/api-fetch": "^6.0.0 || ^7.0.0",
71
- "react": "^18.0.0"
72
- },
73
- "peerDependenciesMeta": {
74
- "@wordpress/api-fetch": {
75
- "optional": true
76
- }
77
- },
78
- "publishConfig": {
79
- "access": "public",
80
- "branch": "trunk"
81
- }
82
- }
2
+ "name": "@automattic/agenttic-client",
3
+ "version": "0.1.3",
4
+ "type": "module",
5
+ "description": "A TypeScript client library for A2A (Agent2Agent) protocol communication",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ },
14
+ "./mocks": {
15
+ "types": "./dist/mocks/index.d.ts",
16
+ "import": "./dist/mocks/index.js"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "README.md"
22
+ ],
23
+ "keywords": [
24
+ "a2a",
25
+ "agent2agent",
26
+ "agenttic",
27
+ "client",
28
+ "typescript",
29
+ "ai",
30
+ "agent",
31
+ "protocol"
32
+ ],
33
+ "author": "Automattic",
34
+ "license": "MIT",
35
+ "engines": {
36
+ "node": ">=18.0.0"
37
+ },
38
+ "devDependencies": {
39
+ "@wordpress/api-fetch": "^7.0.0",
40
+ "tsup": "^8.0.0",
41
+ "typescript": "^5.0.0",
42
+ "unified": "^11.0.5",
43
+ "vitest": "^1.0.0"
44
+ },
45
+ "dependencies": {
46
+ "@automattic/charts": "^0.14.0",
47
+ "@types/react": "^18.0.0",
48
+ "@visx/xychart": "^3.12.0",
49
+ "@wordpress/element": "^6.2.0",
50
+ "@wordpress/i18n": "^6.1.0",
51
+ "react": "^18.0.0",
52
+ "react-markdown": "^10.1.0",
53
+ "remark-gfm": "^4.0.1"
54
+ },
55
+ "peerDependencies": {
56
+ "@wordpress/api-fetch": "^6.0.0 || ^7.0.0",
57
+ "react": "^18.0.0"
58
+ },
59
+ "peerDependenciesMeta": {
60
+ "@wordpress/api-fetch": {
61
+ "optional": true
62
+ }
63
+ },
64
+ "publishConfig": {
65
+ "access": "public",
66
+ "branch": "trunk"
67
+ },
68
+ "scripts": {
69
+ "build": "pnpm run clean && tsup src/index.ts src/mocks/index.ts --format esm --target node18 && tsc --project tsconfig.json --emitDeclarationOnly",
70
+ "build:no-splitting": "pnpm run clean && tsup src/index.ts --format esm --target node18 --splitting=false && tsc --project tsconfig.json --emitDeclarationOnly",
71
+ "dev": "tsup src/index.ts --format esm --watch",
72
+ "dev:no-splitting": "tsup src/index.ts --format esm --target node18 --splitting=false --watch",
73
+ "clean": "rm -rf dist",
74
+ "type-check": "tsc --noEmit",
75
+ "lint": "wp-scripts lint-js src --ext .ts,.tsx",
76
+ "lint:fix": "wp-scripts lint-js src --ext .ts,.tsx --fix",
77
+ "test": "vitest run",
78
+ "i18n:extract": "npx --no-install @wordpress/i18n-command make-pot src --output=languages/a8c-agenttic.pot --domain=a8c-agenttic",
79
+ "i18n:update": "npx --no-install @wordpress/i18n-command make-json languages --domain=a8c-agenttic"
80
+ }
81
+ }