-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.14 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
{
"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.4.0",
"@eslint/core": "^0.16.0",
"@eslint/js": "^9.37.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/aws-lambda": "^8.10.155",
"@types/node": "^22.18.8",
"@types/uuid": "^10.0.0",
"@vitest/eslint-plugin": "^1.3.16",
"aws-cdk": "^2.1029.4",
"dotenv": "^16.6.1",
"eslint": "^9.37.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-promise": "^7.2.1",
"jiti": "^2.6.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.9",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@arizeai/openinference-instrumentation-bedrock": "^0.4.1",
"@arizeai/openinference-instrumentation-langchain": "^3.4.3",
"@aws-lambda-powertools/logger": "^2.27.0",
"@aws-sdk/credential-provider-node": "^3.901.0",
"@langchain/anthropic": "^0.3.30",
"@langchain/aws": "^0.1.15",
"@langchain/core": "^0.3.78",
"@langchain/langgraph": "^0.4.9",
"@langchain/openai": "^0.6.14",
"@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.2.0",
"aws-cdk-lib": "^2.219.0",
"constructs": "^10.4.2",
"langfuse": "^3.38.5",
"langfuse-langchain": "^3.38.5",
"source-map-support": "^0.5.21",
"uuid": "^11.1.0"
}
}