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

51 wiersze
1.2 KiB
JSON
Czysty Zwykły widok Historia

{
"name": "@agentic/platform-tool-client",
2025-06-29 11:15:52 +00:00
"version": "8.1.1",
"description": "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:*",
2025-06-25 02:11:02 +00:00
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
2025-06-29 04:39:23 +00:00
"@agentic/core": "workspace:*",
"@agentic/platform-api-client": "workspace:*",
"@agentic/platform-core": "workspace:*",
"@agentic/platform-types": "workspace:*",
"@agentic/platform-validators": "workspace:*",
"ky": "catalog:"
},
"publishConfig": {
"access": "public",
"files": [
"dist"
],
2025-06-28 15:52:20 +00:00
"types": "./dist/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
}
}
}