-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "adk-javascript",
"version": "1.0.1",
"description": "Agent Development Kit (ADK) for JavaScript/Node.js - A flexible and modular framework for developing and deploying AI agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"dev": "ts-node src/cli/index.ts",
"prepublishOnly": "npm run build",
"docs:generate": "typedoc src/index.ts"
},
"bin": {
"adk": "dist/cli/index.js"
},
"keywords": [
"ai",
"agents",
"gemini",
"google",
"llm",
"chatbot",
"automation",
"typescript",
"nodejs"
],
"author": "Geanderson Lemonte",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lemonte/adk-javascript.git"
},
"bugs": {
"url": "https://github.com/lemonte/adk-javascript/issues"
},
"homepage": "https://github.com/lemonte/adk-javascript",
"dependencies": {
"@google-cloud/aiplatform": "^3.28.0",
"@google-cloud/storage": "^7.12.1",
"@google/generative-ai": "^0.21.0",
"@types/cors": "^2.8.19",
"axios": "^1.7.7",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fastify": "^5.1.0",
"joi": "^17.13.3",
"openapi-types": "^12.1.3",
"uuid": "^10.0.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}