chatgpt-api/stdlib/core/package.json

68 wiersze
1.4 KiB
JSON
Czysty Zwykły widok Historia

2025-05-19 15:19:34 +00:00
{
"name": "@agentic/core",
2025-06-30 17:53:24 +00:00
"version": "8.2.0",
"description": "Agentic AI utils which work with any LLM and TypeScript AI SDK.",
2025-05-19 15:19:34 +00:00
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
2025-05-19 15:19:34 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
"directory": "stdlib/core"
2025-05-19 15:19:34 +00:00
},
"type": "module",
"sideEffects": false,
2025-05-19 15:19:34 +00:00
"source": "./src/index.ts",
2025-06-29 07:08:53 +00:00
"types": "./dist/index.ts",
2025-05-19 15:19:34 +00:00
"exports": {
2025-06-29 07:08:53 +00:00
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
2025-05-19 15:19:34 +00:00
},
2025-06-29 07:08:53 +00:00
"files": [
"dist"
],
2025-05-19 15:19:34 +00:00
"scripts": {
"build": "tsup",
"clean": "del dist",
2025-05-19 15:19:34 +00:00
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"dedent": "catalog:",
"delay": "catalog:",
"jsonrepair": "catalog:",
"ky": "catalog:",
"openai-zod-to-json-schema": "^1.1.1",
"p-throttle": "catalog:",
2025-06-15 03:20:08 +00:00
"type-fest": "catalog:",
"zod-validation-error": "catalog:"
2025-05-19 15:19:34 +00:00
},
"peerDependencies": {
"zod": "catalog:"
},
"devDependencies": {
"openai-fetch": "catalog:"
},
"keywords": [
"agentic",
"ai",
"sdk",
"openai",
"llm",
"tools",
"stdlib",
"standard",
"library",
"functions",
"typescript",
"agent",
"agents"
],
2025-05-19 15:19:34 +00:00
"publishConfig": {
2025-06-29 07:08:53 +00:00
"access": "public"
2025-05-19 15:19:34 +00:00
}
}