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

50 wiersze
1.1 KiB
JSON
Czysty Zwykły widok Historia

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",
"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",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
2025-05-20 16:28:31 +00:00
"directory": "packages/api-client"
},
"engines": {
"node": ">=18"
},
2025-05-20 16:28:31 +00:00
"type": "module",
"sideEffects": false,
2025-05-20 16:28:31 +00:00
"source": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"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:",
"type-fest": "catalog:"
2025-05-20 16:28:31 +00:00
},
"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"
}
}
2025-05-20 16:28:31 +00:00
}
}