-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.11 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
{
"name": "@llm-ts-example/cdk",
"version": "0.1.0",
"bin": "bin/cdk.js",
"type": "module",
"scripts": {
"build": "tsc --build --clean && tsc",
"clean": "tsc --build --clean",
"watch": "tsc -w",
"test": "vitest run --passWithNoTests",
"cdk": "cdk",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.35.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/aws-lambda": "^8.10.152",
"@types/node": "^22.18.6",
"@types/uuid": "^10.0.0",
"@vitest/eslint-plugin": "^1.3.12",
"aws-cdk": "^2.1029.2",
"dotenv": "^16.6.1",
"eslint": "^9.35.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-promise": "^7.2.1",
"jiti": "^2.5.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"vite": "^6.3.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@arizeai/openinference-instrumentation-bedrock": "^0.4.0",
"@arizeai/openinference-instrumentation-langchain": "^3.4.2",
"@aws-lambda-powertools/logger": "^2.26.1",
"@aws-sdk/credential-provider-node": "^3.891.0",
"@langchain/anthropic": "^0.3.28",
"@langchain/aws": "^0.1.15",
"@langchain/core": "^0.3.77",
"@langchain/langgraph": "^0.4.9",
"@langchain/openai": "^0.6.13",
"@llm-ts-example/common-backend": "workspace:*",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.205.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.205.0",
"@opentelemetry/instrumentation": "^0.205.0",
"@opentelemetry/resources": "^2.1.0",
"@opentelemetry/sdk-node": "^0.205.0",
"@opentelemetry/sdk-trace-base": "^2.1.0",
"@opentelemetry/sdk-trace-node": "^2.1.0",
"@opentelemetry/semantic-conventions": "^1.37.0",
"@smithy/eventstream-codec": "^4.1.1",
"aws-cdk-lib": "^2.215.0",
"constructs": "^10.4.2",
"langfuse": "^3.38.5",
"langfuse-langchain": "^3.38.5",
"source-map-support": "^0.5.21",
"uuid": "^11.1.0"
}
}