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

50 wiersze
1.1 KiB
JSON

{
"name": "@agentic/platform-api-client",
"version": "8.2.0",
"description": "TypeScript API client for 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/api-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/platform-core": "workspace:*",
"@agentic/platform-types": "workspace:*",
"@standard-schema/spec": "catalog:",
"ky": "catalog:",
"type-fest": "catalog:"
},
"publishConfig": {
"access": "public",
"files": [
"dist"
],
"types": "./dist/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
}
}
}