|
| 1 | +{ |
| 2 | + "name": "@eggjs/agent-tracing", |
| 3 | + "version": "3.72.0", |
| 4 | + "description": "Tracing support for AI agents (LangGraph, Claude Agent SDK)", |
| 5 | + "keywords": [ |
| 6 | + "agent", |
| 7 | + "claude", |
| 8 | + "egg", |
| 9 | + "langchain", |
| 10 | + "langgraph", |
| 11 | + "tegg", |
| 12 | + "tracing", |
| 13 | + "typescript" |
| 14 | + ], |
| 15 | + "main": "dist/index.js", |
| 16 | + "files": [ |
| 17 | + "dist/**/*.js", |
| 18 | + "dist/**/*.d.ts" |
| 19 | + ], |
| 20 | + "typings": "dist/index.d.ts", |
| 21 | + "exports": { |
| 22 | + ".": { |
| 23 | + "types": "./dist/index.d.ts", |
| 24 | + "default": "./dist/index.js" |
| 25 | + }, |
| 26 | + "./claude": { |
| 27 | + "types": "./dist/claude.d.ts", |
| 28 | + "default": "./dist/claude.js" |
| 29 | + }, |
| 30 | + "./langgraph": { |
| 31 | + "types": "./dist/langgraph.d.ts", |
| 32 | + "default": "./dist/langgraph.js" |
| 33 | + }, |
| 34 | + "./package.json": "./package.json" |
| 35 | + }, |
| 36 | + "scripts": { |
| 37 | + "test": "node --eval \"process.exit(parseInt(process.versions.node) < 18 ? 0 : 1)\" || cross-env NODE_ENV=test NODE_OPTIONS='--no-deprecation' mocha", |
| 38 | + "clean": "tsc -b --clean", |
| 39 | + "tsc": "ut run clean && tsc -p ./tsconfig.json", |
| 40 | + "tsc:pub": "ut run clean && tsc -p ./tsconfig.pub.json", |
| 41 | + "prepublishOnly": "ut tsc:pub" |
| 42 | + }, |
| 43 | + "homepage": "https://github.com/eggjs/tegg", |
| 44 | + "bugs": { |
| 45 | + "url": "https://github.com/eggjs/tegg/issues" |
| 46 | + }, |
| 47 | + "repository": { |
| 48 | + "type": "git", |
| 49 | + "url": "git@github.com:eggjs/tegg.git", |
| 50 | + "directory": "core/agent-tracing" |
| 51 | + }, |
| 52 | + "engines": { |
| 53 | + "node": ">=18.0.0" |
| 54 | + }, |
| 55 | + "author": "killagu <killa123@126.com>", |
| 56 | + "license": "MIT", |
| 57 | + "dependencies": { |
| 58 | + "@eggjs/tegg-background-task": "^3.72.0", |
| 59 | + "@eggjs/core-decorator": "^3.72.0", |
| 60 | + "@eggjs/tegg-types": "^3.72.0", |
| 61 | + "onelogger": "^1.0.1" |
| 62 | + }, |
| 63 | + "peerDependencies": { |
| 64 | + "@anthropic-ai/claude-agent-sdk": ">=0.2.52", |
| 65 | + "@langchain/core": ">=1.1.1" |
| 66 | + }, |
| 67 | + "peerDependenciesMeta": { |
| 68 | + "@anthropic-ai/claude-agent-sdk": { |
| 69 | + "optional": true |
| 70 | + }, |
| 71 | + "@langchain/core": { |
| 72 | + "optional": true |
| 73 | + } |
| 74 | + }, |
| 75 | + "devDependencies": { |
| 76 | + "@anthropic-ai/claude-agent-sdk": "^0.2.52", |
| 77 | + "@anthropic-ai/sdk": "^0.78.0", |
| 78 | + "@eggjs/tegg-common-util": "^3.72.0", |
| 79 | + "@langchain/core": "^1.1.29", |
| 80 | + "@langchain/langgraph": "^0.2.74", |
| 81 | + "@types/mocha": "^10.0.1", |
| 82 | + "@types/node": "^20.2.4", |
| 83 | + "cross-env": "^7.0.3", |
| 84 | + "mocha": "^10.2.0", |
| 85 | + "ts-node": "^10.9.1", |
| 86 | + "typescript": "^5.0.4" |
| 87 | + }, |
| 88 | + "publishConfig": { |
| 89 | + "access": "public" |
| 90 | + } |
| 91 | +} |
0 commit comments