-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.73 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.73 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
{
"name": "@aipexstudio/aipex-core",
"version": "0.1.0",
"description": "AIPex Agent - Pure TypeScript AI Agent Framework",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AIPexStudio/AIPex.git"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts",
"!dist/src/**/*.test.js",
"!dist/src/**/*.test.d.ts"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"typecheck": "tsc --project tsconfig.json",
"prepublishOnly": "npm run build",
"example:basic": "tsx examples/basic-example.ts",
"example:fork": "tsx examples/fork-example.ts",
"example:metrics": "tsx examples/metrics-example.ts"
},
"keywords": [
"ai",
"agent",
"llm",
"gemini",
"typescript"
],
"author": "AIPex Studio",
"license": "MIT",
"type": "module",
"dependencies": {
"@openai/agents": "^0.7.2",
"@openai/agents-extensions": "^0.8.1",
"lru-cache": "^11.2.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@ai-sdk/google": "^3.0.52",
"@ai-sdk/openai": "^3.0.47",
"@types/node": "^25.2.3",
"dotenv": "^17.3.1",
"tsx": "^4.21.0"
},
"peerDependencies": {
"@ai-sdk/anthropic": "^3.0.0",
"@ai-sdk/google": "^3.0.0",
"@ai-sdk/openai": "^3.0.0",
"@openrouter/ai-sdk-provider": "^2.0.0"
},
"peerDependenciesMeta": {
"@ai-sdk/openai": {
"optional": true
},
"@ai-sdk/anthropic": {
"optional": true
},
"@ai-sdk/google": {
"optional": true
},
"@openrouter/ai-sdk-provider": {
"optional": true
}
}
}