mirror of
https://github.com/labring/FastGPT.git
synced 2026-03-30 01:01:15 +08:00
* doc * feat: Pause Recovery (#6494) * feat: Pause Recovery * agent pause * agent pause * fix:agent pause * fix:agent pause * perf: pause agent call * fix: test --------- Co-authored-by: archer <545436317@qq.com> * fix: image read and json error (Agent) (#6502) * fix: 1.image read 2.JSON parsing error * dataset cite and pause * perf: plancall second parse * add test --------- Co-authored-by: archer <545436317@qq.com> * master message * remove invalid code * fix: pause agent (#6595) * fix: ask and step result * delete console * udpate pnpm version * prettier --------- Co-authored-by: YeYuheng <57035043+YYH211@users.noreply.github.com>
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "@fastgpt-sdk/logger",
|
|
"private": false,
|
|
"version": "0.1.2",
|
|
"description": "FastGPT SDK for logger",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"prepublishOnly": "pnpm build"
|
|
},
|
|
"keywords": [
|
|
"logger",
|
|
"opentelemetry"
|
|
],
|
|
"author": "FastGPT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/labring/FastGPT.git",
|
|
"directory": "FastGPT/sdk/logger"
|
|
},
|
|
"homepage": "https://github.com/labring/FastGPT",
|
|
"bugs": {
|
|
"url": "https://github.com/labring/FastGPT/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"engines": {
|
|
"node": ">=20",
|
|
"pnpm": "9.x"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@logtape/logtape": "^2",
|
|
"@logtape/pretty": "^2",
|
|
"@opentelemetry/api": "^1.9.0",
|
|
"@opentelemetry/api-logs": "^0.203.0",
|
|
"@opentelemetry/exporter-logs-otlp-http": "^0.203.0",
|
|
"@opentelemetry/resources": "^2.0.1",
|
|
"@opentelemetry/sdk-logs": "^0.203.0",
|
|
"@opentelemetry/semantic-conventions": "^1.39.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|