chatgpt-api/legacy/packages/xsai/package.json

48 wiersze
1.0 KiB
JSON
Czysty Zwykły widok Historia

2025-03-20 09:37:16 +00:00
{
"name": "@agentic/xsai",
2025-06-25 03:07:51 +00:00
"version": "7.6.9",
2025-03-20 09:37:16 +00:00
"description": "Agentic adapter for the xsAI SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
"directory": "packages/xsai"
2025-03-20 09:37:16 +00:00
},
"type": "module",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "del dist",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@xsai/tool": "catalog:"
},
"devDependencies": {
"@xsai/tool": "catalog:"
},
"publishConfig": {
"access": "public"
}
}