chatgpt-api/packages/tool-client/package.json

52 wiersze
1.3 KiB
JSON

{
"name": "@agentic/platform-tool-client",
"version": "8.1.1",
"description": "Main client for working with LLM tools hosted on the Agentic platform.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
"directory": "packages/tool-client"
},
"engines": {
"node": ">=18"
},
"type": "module",
"sideEffects": false,
"source": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "tsup",
"clean": "del dist",
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/platform-api-client": "workspace:*",
"@agentic/platform-core": "workspace:*",
"@agentic/platform-types": "workspace:*",
"@agentic/platform-validators": "workspace:*",
"ky": "catalog:",
"zod": "catalog:"
},
"publishConfig": {
"access": "public",
"files": [
"dist"
],
"types": "./dist/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
}
}
}