@agent-harness-experimental/adapter-openai-agents 0.0.0 → 0.0.1

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.
package/package.json CHANGED
@@ -1,5 +1,55 @@
1
1
  {
2
2
  "name": "@agent-harness-experimental/adapter-openai-agents",
3
- "version": "0.0.0",
4
- "license": "ISC"
5
- }
3
+ "version": "0.0.1",
4
+ "description": "Experimental OpenAI Agents adapter for agent-harness-experimental.",
5
+ "license": "UNLICENSED",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/vercel-labs/agent-harness-sdk.git",
9
+ "directory": "packages/adapter-openai-agents"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/vercel-labs/agent-harness-sdk/issues"
13
+ },
14
+ "homepage": "https://github.com/vercel-labs/agent-harness-sdk#readme",
15
+ "keywords": [
16
+ "agent",
17
+ "harness",
18
+ "experimental",
19
+ "ai-sdk",
20
+ "sandbox"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "type": "module",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "default": "./dist/index.js"
30
+ }
31
+ },
32
+ "dependencies": {
33
+ "@openai/agents": "^0.11.4",
34
+ "zod": "^4.3.6",
35
+ "agent-harness-experimental": "0.0.1",
36
+ "@agent-harness-experimental/sandbox-vercel": "0.0.1",
37
+ "@agent-harness-experimental/protocol": "0.0.1"
38
+ },
39
+ "devDependencies": {
40
+ "typescript": "^5.8.3",
41
+ "vitest": "^3.1.3"
42
+ },
43
+ "main": "./dist/index.js",
44
+ "types": "./dist/index.d.ts",
45
+ "sideEffects": false,
46
+ "files": [
47
+ "dist"
48
+ ],
49
+ "scripts": {
50
+ "lint": "biome check src package.json tsconfig.json tsconfig.build.json",
51
+ "typecheck": "tsc --noEmit -p tsconfig.json",
52
+ "test": "vitest run --config ../../vitest.package.config.ts src/*.test.ts",
53
+ "build": "tsc -p tsconfig.build.json && tsx ../../scripts/copy-package-assets.ts packages/adapter-openai-agents"
54
+ }
55
+ }