forked from monocle2ai/monocle-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "monocle2ai",
"version": "0.1.2",
"description": "TypeScript library for AI observability and monitoring",
"main": "./index.cjs",
"module": "./index.mjs",
"license": "Apache-2.0",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/monocle2ai/monocle-typescript.git"
},
"homepage": "https://github.com/monocle2ai/monocle-typescript",
"keywords": [
"ai",
"monitoring",
"observability",
"typescript",
"opentelemetry"
],
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "./scripts/build",
"build:typescript": "tsc-multi",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint .",
"prettier": "prettier \"{src,__{tests}__}/**/*.{ts,mts}\" --config .prettierrc --write",
"prettier:check": "prettier \"{src,__{tests}__}/**/*.{ts,mts}\" --config .prettierrc --check",
"test": "vitest run",
"test:run": "npx vitest run test/integration/langchainGemini.test.ts",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:coverage:report": "vitest run --coverage && npx serve coverage",
"test:unit": "vitest run test/unit/*.test.ts",
"test:unit:coverage": "vitest run --coverage test/unit/*.test.ts",
"test:integration": "vitest run test/integration/*.test.ts",
"test:integration:coverage": "vitest run --coverage test/integration/*.test.ts",
"test:integration:report": "vitest run test/integration/*.test.ts --reporter=default --reporter=html --outputFile=./reports/integration/index.html"
},
"author": "monocle2ai <https://github.com/monocle2ai/monocle-typescript>",
"dependencies": {
"@aws-sdk/client-s3": "^3.782.0",
"@azure/storage-blob": "12.27.0",
"@langchain/langgraph-supervisor": "^0.0.18",
"@openai/agents": "^0.1.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^2.0.0",
"@opentelemetry/instrumentation": "^0.200.0",
"@opentelemetry/resources": "^2.0.0",
"@opentelemetry/sdk-trace-node": "^2.0.0",
"@vercel/functions": "^2.0.0",
"axios": "^1.8.4",
"date-fns": "^4.1.0",
"import-in-the-middle": "^1.13.1",
"require-in-the-middle": "^7.5.2"
},
"devDependencies": {
"@a2a-js/sdk": "^0.3.1",
"@anthropic-ai/sdk": "^0.39.0",
"@aws-sdk/client-bedrock-runtime": "^3.785.0",
"@aws-sdk/client-opensearch": "^3.782.0",
"@aws-sdk/client-sagemaker-runtime": "^3.782.0",
"@aws-sdk/credential-providers": "^3.782.0",
"@eslint/js": "^9.24.0",
"@google/adk": "^1.1.0",
"@google/genai": "^1.7.0",
"@langchain/anthropic": "^0.3.19",
"@langchain/aws": "^0.1.9",
"@langchain/community": "^0.3.42",
"@langchain/core": "^0.3.50",
"@langchain/google-genai": "^0.2.14",
"@langchain/langgraph": "^0.3.8",
"@langchain/openai": "^0.5.8",
"@modelcontextprotocol/sdk": "^1.17.1",
"@opensearch-project/opensearch": "^3.5.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.14.0",
"@typescript-eslint/parser": "^8.29.1",
"@vitest/coverage-v8": "^3.2.6",
"@vitest/ui": "^3.2.6",
"aws-sdk": "^2.1692.0",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"express": "^5.1.0",
"globals": "^16.0.0",
"hnswlib-node": "^3.0.0",
"langchain": "^0.3.24",
"llamaindex": "^0.9.17",
"openai": "^4.93.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-api-utils": "^2.1.0",
"tsc-multi": "^1.1.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"uuid": "^11.1.0",
"vitest": "^3.2.6",
"zod": "^3.25.76"
}
}