mirror of
https://github.com/AIPexStudio/AIPex.git
synced 2026-05-20 21:36:08 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: 0x5457 <0x5457@protonmail.com>
76 lines
1.7 KiB
JSON
76 lines
1.7 KiB
JSON
{
|
|
"name": "@aipexstudio/aipex-core",
|
|
"version": "0.0.16",
|
|
"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.4.3",
|
|
"@openai/agents-extensions": "^0.4.3",
|
|
"lru-cache": "^11.2.4",
|
|
"zod": "^4.1.13"
|
|
},
|
|
"devDependencies": {
|
|
"@ai-sdk/google": "^3.0.6",
|
|
"@ai-sdk/openai": "^3.0.12",
|
|
"@types/node": "^25.0.9",
|
|
"dotenv": "^17.2.3",
|
|
"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": "^0.4.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@ai-sdk/openai": {
|
|
"optional": true
|
|
},
|
|
"@ai-sdk/anthropic": {
|
|
"optional": true
|
|
},
|
|
"@ai-sdk/google": {
|
|
"optional": true
|
|
},
|
|
"@openrouter/ai-sdk-provider": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|