UNPKG

@agentic/core

Version:

Agentic AI utils which work with any LLM and TypeScript AI SDK.

69 lines 1.47 kB
{ "name": "@agentic/core", "version": "7.6.7", "description": "Agentic AI utils which work with any LLM and TypeScript AI SDK.", "author": "Travis Fischer <travis@transitivebullsh.it>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/transitive-bullshit/agentic.git", "directory": "packages/core" }, "type": "module", "source": "./src/index.ts", "types": "./dist/index.d.ts", "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" } }, "files": [ "dist" ], "dependencies": { "dedent": "^1.6.0", "delay": "^6.0.0", "jsonrepair": "^3.12.0", "ky": "^1.8.1", "openai-zod-to-json-schema": "^1.0.3", "p-throttle": "6.2.0", "type-fest": "^4.41.0", "zod-validation-error": "^3.4.1" }, "peerDependencies": { "zod": "^3.25.55" }, "devDependencies": { "openai-fetch": "^3.4.2" }, "keywords": [ "agentic", "ai", "sdk", "openai", "llm", "tools", "stdlib", "standard", "library", "functions", "typescript", "agent", "agents" ], "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "clean": "del dist", "test": "run-s test:*", "test:lint": "eslint .", "test:typecheck": "tsc --noEmit", "test:unit": "vitest run" } }