2025-05-20 16:28:31 +00:00
|
|
|
{
|
|
|
|
|
"name": "@agentic/platform-api-client",
|
2025-06-29 11:15:52 +00:00
|
|
|
"version": "8.1.1",
|
2025-06-29 04:07:40 +00:00
|
|
|
"description": "TypeScript API client for the Agentic platform.",
|
2025-05-20 16:28:31 +00:00
|
|
|
"author": "Travis Fischer <travis@transitivebullsh.it>",
|
2025-06-20 04:05:47 +00:00
|
|
|
"license": "AGPL-3.0",
|
2025-05-20 16:28:31 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2025-06-25 03:37:46 +00:00
|
|
|
"url": "git+https://github.com/transitive-bullshit/agentic.git",
|
2025-05-20 16:28:31 +00:00
|
|
|
"directory": "packages/api-client"
|
|
|
|
|
},
|
2025-06-25 03:37:46 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=18"
|
|
|
|
|
},
|
2025-05-20 16:28:31 +00:00
|
|
|
"type": "module",
|
2025-06-29 04:07:40 +00:00
|
|
|
"sideEffects": false,
|
2025-05-20 16:28:31 +00:00
|
|
|
"source": "./src/index.ts",
|
|
|
|
|
"types": "./src/index.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./src/index.ts"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2025-06-25 03:23:49 +00:00
|
|
|
"build": "tsup",
|
|
|
|
|
"clean": "del dist",
|
2025-05-20 16:28:31 +00:00
|
|
|
"test": "run-s test:*",
|
2025-05-20 17:50:41 +00:00
|
|
|
"test:typecheck": "tsc --noEmit"
|
2025-05-20 16:28:31 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@agentic/platform-core": "workspace:*",
|
2025-05-31 08:41:35 +00:00
|
|
|
"@agentic/platform-types": "workspace:*",
|
2025-06-25 02:26:02 +00:00
|
|
|
"@standard-schema/spec": "catalog:",
|
2025-05-20 16:28:31 +00:00
|
|
|
"ky": "catalog:",
|
2025-05-26 17:43:53 +00:00
|
|
|
"type-fest": "catalog:"
|
2025-05-20 16:28:31 +00:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
2025-06-25 03:23:49 +00:00
|
|
|
"access": "public",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
2025-06-28 15:52:20 +00:00
|
|
|
"types": "./dist/index.ts",
|
2025-06-25 03:23:49 +00:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-05-20 16:28:31 +00:00
|
|
|
}
|
|
|
|
|
}
|