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

51 wiersze
1.1 KiB
JSON

{
"name": "@agentic/xsai",
"version": "7.6.9",
"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": "stdlib/xsai"
},
"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",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/platform-tool-client": "workspace:*"
},
"peerDependencies": {
"@xsai/tool": "catalog:"
},
"devDependencies": {
"@xsai/tool": "catalog:"
},
"publishConfig": {
"access": "public",
"files": [
"dist"
],
"types": "./dist/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
}
}
}