Add pi-langfuse extension (Langfuse LLM observability for pi) — vendored from npm 1.5.8

This commit is contained in:
2026-08-03 20:09:58 +10:00
parent 0603c29216
commit bc91a15905
27 changed files with 9219 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
{
"name": "pi-langfuse",
"version": "1.5.8",
"description": "Langfuse extension for Pi coding agent",
"repository": {
"type": "git",
"url": "git+https://github.com/gooyoung/pi-langfuse.git"
},
"bugs": {
"url": "https://github.com/gooyoung/pi-langfuse/issues"
},
"homepage": "https://github.com/gooyoung/pi-langfuse#readme",
"type": "module",
"packageManager": "npm@11.12.1",
"main": "index.ts",
"files": [
"index.ts",
"src/",
"types/",
"README.md",
"README_CN.md",
"image.png",
"skills-lock.json",
"tsconfig.json"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts"
},
"keywords": [
"pi-package",
"langfuse",
"observability",
"tracing",
"monitoring",
"pi-coding-agent",
"extension"
],
"pi": {
"extensions": [
"./index.ts"
],
"image": "https://github.com/gooyoung/pi-langfuse/blob/main/image.png?raw=true"
},
"dependencies": {
"@langfuse/client": "^5.3.0",
"@langfuse/otel": "^5.3.0",
"@langfuse/tracing": "^5.3.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^2.7.1",
"@opentelemetry/sdk-node": "^0.218.0",
"@opentelemetry/sdk-trace-base": "^2.0.1"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"devDependencies": {
"tsx": "^4.19.0",
"typescript": "^6.0.3"
}
}