-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.19 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.19 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
{
"name": "dgenai-sdk",
"version": "1.0.11",
"description": "Official TypeScript SDK for dgenai Public API",
"license": "MIT",
"type": "module",
"bin": {
"dgenai": "./dist/a2a-cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.4",
"@microsoft/fetch-event-source": "^2.0.1",
"axios": "^1.12.2",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"eventsource-parser": "^3.0.6",
"openai": "^6.8.1",
"uuid": "^13.0.0",
"x402-axios": "^0.6.6",
"x402-fetch": "^0.7.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}