-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.23 KB
/
package.json
File metadata and controls
59 lines (59 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "codex-a2a",
"version": "0.3.1",
"description": "A2A server adapter for OpenAI Codex",
"keywords": [
"a2a",
"agent",
"codex",
"json-rpc",
"openai",
"rest",
"server",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/MyPrototypeWhat/codex-a2a.git"
},
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.13",
"@openai/codex-sdk": "^0.116.0",
"express": "^4.19.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.0",
"@types/express": "^4.17.21",
"@types/node": "^20.17.0",
"tsdown": "^0.20.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}