2025-06-24 12:34:22 +00:00
|
|
|
{
|
|
|
|
|
"name": "@agentic/platform-tool-client",
|
2025-06-28 15:47:12 +00:00
|
|
|
"version": "8.0.1",
|
2025-06-24 12:34:22 +00:00
|
|
|
"description": "Tool client for the Agentic platform.",
|
|
|
|
|
"author": "Travis Fischer <travis@transitivebullsh.it>",
|
|
|
|
|
"license": "AGPL-3.0",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2025-06-25 03:37:46 +00:00
|
|
|
"url": "git+https://github.com/transitive-bullshit/agentic.git",
|
2025-06-24 12:34:22 +00:00
|
|
|
"directory": "packages/tool-client"
|
|
|
|
|
},
|
2025-06-25 03:37:46 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=18"
|
|
|
|
|
},
|
2025-06-24 12:34:22 +00:00
|
|
|
"type": "module",
|
|
|
|
|
"source": "./src/index.ts",
|
|
|
|
|
"types": "./src/index.ts",
|
|
|
|
|
"sideEffects": false,
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./src/index.ts"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2025-06-25 03:23:49 +00:00
|
|
|
"build": "tsup",
|
|
|
|
|
"clean": "del dist",
|
2025-06-24 12:34:22 +00:00
|
|
|
"test": "run-s test:*",
|
2025-06-25 02:11:02 +00:00
|
|
|
"test:typecheck": "tsc --noEmit"
|
2025-06-24 12:34:22 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-06-25 02:26:02 +00:00
|
|
|
"@agentic/core": "catalog:",
|
2025-06-24 12:34:22 +00:00
|
|
|
"@agentic/platform-api-client": "workspace:*",
|
|
|
|
|
"@agentic/platform-core": "workspace:*",
|
|
|
|
|
"@agentic/platform-types": "workspace:*",
|
|
|
|
|
"@agentic/platform-validators": "workspace:*",
|
|
|
|
|
"ky": "catalog:"
|
2025-06-25 03:23:49 +00:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"exports": {
|
|
|
|
|
"types": "./dist/index.ts",
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-06-24 12:34:22 +00:00
|
|
|
}
|
|
|
|
|
}
|