@iqai/adk 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 ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@iqai/adk",
3
+ "version": "0.0.1",
4
+ "description": "Agent Development Kit for TypeScript with multi-provider LLM support",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.mjs",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/IQAIcom/adk-ts.git"
10
+ },
11
+ "keywords": [
12
+ "ai",
13
+ "llm",
14
+ "agent",
15
+ "openai",
16
+ "anthropic",
17
+ "gemini",
18
+ "typescript"
19
+ ],
20
+ "author": "IQAI",
21
+ "license": "MIT",
22
+ "dependencies": {
23
+ "@anthropic-ai/sdk": "^0.39.0",
24
+ "@clack/prompts": "^0.10.1",
25
+ "@electric-sql/pglite": "^0.3.2",
26
+ "@google-cloud/vertexai": "^0.5.0",
27
+ "@google/genai": "^1.0.0",
28
+ "@modelcontextprotocol/sdk": "^1.11.1",
29
+ "axios": "^1.6.2",
30
+ "dotenv": "^16.4.7",
31
+ "drizzle-orm": "^0.43.1",
32
+ "openai": "^4.93.0",
33
+ "uuid": "^11.1.0",
34
+ "zod": "^3.22.4"
35
+ },
36
+ "devDependencies": {
37
+ "@changesets/cli": "^2.29.2",
38
+ "@biomejs/biome": "1.9.4",
39
+ "@types/node": "^20.17.30",
40
+ "gh-pages": "^6.3.0",
41
+ "lint-staged": "^15.5.2",
42
+ "prettier": "^3.1.0",
43
+ "rimraf": "^5.0.5",
44
+ "ts-node": "^10.9.1",
45
+ "tsconfig-paths": "^4.2.0",
46
+ "tsx": "^4.19.4",
47
+ "tsup": "^8.4.0",
48
+ "typedoc": "^0.28.2",
49
+ "typedoc-plugin-markdown": "^4.6.2",
50
+ "typescript": "^5.3.2",
51
+ "vitest": "^3.1.3"
52
+ },
53
+ "engines": {
54
+ "node": ">=22.0"
55
+ },
56
+ "lint-staged": {
57
+ "*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
58
+ "biome check --write --organize-imports-enabled=false --no-errors-on-unmatched"
59
+ ]
60
+ },
61
+ "publishConfig": {
62
+ "access": "public"
63
+ },
64
+ "scripts": {
65
+ "build": "tsup",
66
+ "test": "vitest run",
67
+ "format": "biome format . --write",
68
+ "lint": "lint-staged --allow-empty",
69
+ "lint:all": "biome check . --write --organize-imports-enabled=true",
70
+ "clean": "rimraf dist",
71
+ "docs": "typedoc --out docs src/index.ts || exit 0",
72
+ "docs:serve": "npx http-server docs",
73
+ "docs:markdown": "typedoc --plugin typedoc-plugin-markdown",
74
+ "predeploy": "npm run docs",
75
+ "deploy:docs": "gh-pages -d docs",
76
+ "example": "tsx examples/index.ts",
77
+ "test:watch": "vitest",
78
+ "test:coverage": "vitest run --coverage",
79
+ "release": "pnpm build && changeset publish"
80
+ }
81
+ }
package/tsup.config.ts ADDED
@@ -0,0 +1,11 @@
1
+ import { defineConfig } from "tsup";
2
+
3
+ export default defineConfig({
4
+ entry: {
5
+ index: "src/index.ts",
6
+ },
7
+ format: ["cjs", "esm"],
8
+ dts: true,
9
+ splitting: true,
10
+ clean: true,
11
+ });
package/typedoc.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "entryPoints": ["src/index.ts"],
3
+ "out": "docs",
4
+ "excludePrivate": true,
5
+ "excludeProtected": false,
6
+ "excludeExternals": true,
7
+ "excludeInternal": true,
8
+ "readme": "README.md",
9
+ "theme": "default",
10
+ "name": "ADK TypeScript Documentation",
11
+ "includeVersion": true,
12
+ "categorizeByGroup": true,
13
+ "categoryOrder": ["Core", "Agents", "LLM", "Tools", "Models", "Memory", "*"],
14
+ "githubPages": true,
15
+ "searchInComments": true,
16
+ "visibilityFilters": {
17
+ "protected": true,
18
+ "private": false,
19
+ "inherited": true,
20
+ "external": false
21
+ },
22
+ "navigationLinks": {
23
+ "GitHub": "https://github.com/IQAIcom/adk-ts",
24
+ "NPM": "https://www.npmjs.com/package/@iqai/adk"
25
+ }
26
+ }