@aws/nx-plugin 1.0.0-rc.42 → 1.0.0-rc.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE-THIRD-PARTY +121 -154
- package/package.json +4 -4
- package/src/connection/generator.js +1 -1
- package/src/connection/generator.js.map +1 -1
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +8 -8
- package/src/preset/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/py/agent/__snapshots__/generator.constructs.spec.ts.snap +7 -7
- package/src/py/agent/__snapshots__/generator.frameworks.spec.ts.snap +6 -6
- package/src/py/agent/__snapshots__/generator.protocols.spec.ts.snap +2 -2
- package/src/py/dynamodb/__snapshots__/generator.spec.ts.snap +4 -8
- package/src/py/fast-api/__snapshots__/generator.terraform.spec.ts.snap +12 -12
- package/src/py/lambda-function/__snapshots__/generator.spec.ts.snap +2 -2
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/py/rdb/__snapshots__/generator.spec.ts.snap +23 -8
- package/src/smithy/ts/api/__snapshots__/generator.spec.ts.snap +7 -7
- package/src/trpc/backend/__snapshots__/generator.spec.ts.snap +12 -12
- package/src/ts/agent/__snapshots__/generator.spec.ts.snap +2 -2
- package/src/ts/dynamodb/__snapshots__/generator.spec.ts.snap +4 -8
- package/src/ts/lambda-function/__snapshots__/generator.spec.ts.snap +2 -2
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +2 -2
- package/src/ts/rdb/__snapshots__/generator.spec.ts.snap +88 -20
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +24 -24
- package/src/ts/react-website/cognito-auth/__snapshots__/generator.terraform.spec.ts.snap +2 -2
- package/src/utils/files/common/scripts/src/dynamodb/start-container.ts.template +1 -3
- package/src/utils/files/common/scripts/src/rdb/shared/start-container.ts.template +1 -3
- package/src/utils/rdb-constructs/files/cdk/core/rdb/aurora.ts.template +18 -3
- package/src/utils/rdb-constructs/files/terraform/core/rdb/aurora/aurora.tf.template +24 -5
- package/src/utils/versions.d.ts +51 -51
- package/src/utils/versions.js +49 -49
- package/src/utils/versions.js.map +1 -1
package/src/utils/versions.d.ts
CHANGED
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
export declare const TS_VERSIONS: {
|
|
9
9
|
readonly '@a2a-js/sdk': "0.3.14";
|
|
10
10
|
readonly '@aws/aws-distro-opentelemetry-node-autoinstrumentation': "0.12.0";
|
|
11
|
-
readonly '@aws-sdk/client-dynamodb': "3.
|
|
12
|
-
readonly '@aws-sdk/client-bedrock-runtime': "3.
|
|
13
|
-
readonly '@aws-sdk/client-s3': "3.
|
|
14
|
-
readonly '@aws-sdk/client-sts': "3.
|
|
15
|
-
readonly '@aws-sdk/credential-providers': "3.
|
|
16
|
-
readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.
|
|
17
|
-
readonly '@aws-sdk/client-secrets-manager': "3.
|
|
18
|
-
readonly '@aws-sdk/rds-signer': "3.
|
|
11
|
+
readonly '@aws-sdk/client-dynamodb': "3.1090.0";
|
|
12
|
+
readonly '@aws-sdk/client-bedrock-runtime': "3.1090.0";
|
|
13
|
+
readonly '@aws-sdk/client-s3': "3.1090.0";
|
|
14
|
+
readonly '@aws-sdk/client-sts': "3.1090.0";
|
|
15
|
+
readonly '@aws-sdk/credential-providers': "3.1090.0";
|
|
16
|
+
readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.58";
|
|
17
|
+
readonly '@aws-sdk/client-secrets-manager': "3.1090.0";
|
|
18
|
+
readonly '@aws-sdk/rds-signer': "3.1090.0";
|
|
19
19
|
readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
|
|
20
20
|
readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
|
|
21
21
|
readonly '@aws-lambda-powertools/logger': "2.34.0";
|
|
@@ -23,14 +23,14 @@ export declare const TS_VERSIONS: {
|
|
|
23
23
|
readonly '@aws-lambda-powertools/parameters': "2.34.0";
|
|
24
24
|
readonly '@aws-lambda-powertools/tracer': "2.34.0";
|
|
25
25
|
readonly '@aws-lambda-powertools/parser': "2.34.0";
|
|
26
|
-
readonly '@aws-sdk/client-appconfigdata': "3.
|
|
26
|
+
readonly '@aws-sdk/client-appconfigdata': "3.1090.0";
|
|
27
27
|
readonly '@middy/core': "7.7.0";
|
|
28
|
-
readonly '@nxlv/python': "22.2.
|
|
28
|
+
readonly '@nxlv/python': "22.2.2";
|
|
29
29
|
readonly '@nx-extend/terraform': "10.3.0";
|
|
30
30
|
readonly '@nx/devkit': "23.1.0";
|
|
31
31
|
readonly '@nx/react': "23.1.0";
|
|
32
32
|
readonly 'create-nx-workspace': "23.1.0";
|
|
33
|
-
readonly '@swc-node/register': "1.
|
|
33
|
+
readonly '@swc-node/register': "1.12.1";
|
|
34
34
|
readonly '@swc/core': "1.15.43";
|
|
35
35
|
readonly '@modelcontextprotocol/sdk': "1.29.0";
|
|
36
36
|
readonly '@modelcontextprotocol/inspector': "0.22.0";
|
|
@@ -39,17 +39,17 @@ export declare const TS_VERSIONS: {
|
|
|
39
39
|
readonly '@ag-ui/core': "0.0.57";
|
|
40
40
|
readonly '@ag-ui/encoder': "0.0.57";
|
|
41
41
|
readonly 'agent-chat-cli': "0.3.0";
|
|
42
|
-
readonly '@copilotkit/react-core': "1.
|
|
42
|
+
readonly '@copilotkit/react-core': "1.63.1";
|
|
43
43
|
readonly rxjs: "7.8.2";
|
|
44
|
-
readonly '@strands-agents/sdk': "1.
|
|
45
|
-
readonly '@tanstack/react-router': "1.170.
|
|
46
|
-
readonly '@tanstack/router-plugin': "1.168.
|
|
47
|
-
readonly '@tanstack/router-generator': "1.167.
|
|
44
|
+
readonly '@strands-agents/sdk': "1.10.0";
|
|
45
|
+
readonly '@tanstack/react-router': "1.170.18";
|
|
46
|
+
readonly '@tanstack/router-plugin': "1.168.22";
|
|
47
|
+
readonly '@tanstack/router-generator': "1.167.21";
|
|
48
48
|
readonly '@tanstack/virtual-file-routes': "1.162.0";
|
|
49
49
|
readonly '@tanstack/router-utils': "1.162.2";
|
|
50
|
-
readonly '@cloudscape-design/board-components': "3.0.
|
|
51
|
-
readonly '@cloudscape-design/chat-components': "1.0.
|
|
52
|
-
readonly '@cloudscape-design/components': "3.0.
|
|
50
|
+
readonly '@cloudscape-design/board-components': "3.0.205";
|
|
51
|
+
readonly '@cloudscape-design/chat-components': "1.0.151";
|
|
52
|
+
readonly '@cloudscape-design/components': "3.0.1330";
|
|
53
53
|
readonly '@cloudscape-design/global-styles': "1.0.62";
|
|
54
54
|
readonly '@tanstack/react-query': "5.101.2";
|
|
55
55
|
readonly '@tanstack/react-query-devtools': "5.101.2";
|
|
@@ -62,20 +62,20 @@ export declare const TS_VERSIONS: {
|
|
|
62
62
|
readonly '@types/pg': "8.20.0";
|
|
63
63
|
readonly '@types/ws': "8.18.1";
|
|
64
64
|
readonly '@types/express': "5.0.6";
|
|
65
|
-
readonly '@smithy/config-resolver': "4.6.
|
|
66
|
-
readonly '@smithy/node-config-provider': "4.5.
|
|
67
|
-
readonly '@smithy/node-http-handler': "4.9.
|
|
65
|
+
readonly '@smithy/config-resolver': "4.6.10";
|
|
66
|
+
readonly '@smithy/node-config-provider': "4.5.10";
|
|
67
|
+
readonly '@smithy/node-http-handler': "4.9.7";
|
|
68
68
|
readonly '@smithy/types': "4.16.1";
|
|
69
69
|
readonly '@vitest/coverage-v8': "4.1.10";
|
|
70
70
|
readonly '@vitest/ui': "4.1.10";
|
|
71
71
|
readonly '@astrojs/react': "6.0.1";
|
|
72
72
|
readonly '@astrojs/starlight': "0.41.3";
|
|
73
|
-
readonly astro: "7.
|
|
73
|
+
readonly astro: "7.1.1";
|
|
74
74
|
readonly aws4fetch: "1.0.20";
|
|
75
|
-
readonly 'aws-cdk': "2.
|
|
75
|
+
readonly 'aws-cdk': "2.1132.0";
|
|
76
76
|
readonly 'aws-cdk-lib': "2.261.0";
|
|
77
77
|
readonly 'aws-xray-sdk-core': "3.12.0";
|
|
78
|
-
readonly constructs: "10.
|
|
78
|
+
readonly constructs: "10.7.0";
|
|
79
79
|
readonly cors: "2.8.6";
|
|
80
80
|
readonly chalk: "5.6.2";
|
|
81
81
|
readonly 'class-variance-authority': "0.7.1";
|
|
@@ -85,7 +85,7 @@ export declare const TS_VERSIONS: {
|
|
|
85
85
|
readonly esbuild: "0.28.1";
|
|
86
86
|
readonly 'event-source-polyfill': "1.0.31";
|
|
87
87
|
readonly '@types/event-source-polyfill': "1.0.5";
|
|
88
|
-
readonly '@biomejs/biome': "2.5.
|
|
88
|
+
readonly '@biomejs/biome': "2.5.4";
|
|
89
89
|
readonly '@prisma/adapter-mariadb': "7.8.0";
|
|
90
90
|
readonly '@prisma/adapter-pg': "7.8.0";
|
|
91
91
|
readonly '@prisma/client': "7.8.0";
|
|
@@ -108,30 +108,30 @@ export declare const TS_VERSIONS: {
|
|
|
108
108
|
readonly react: "19.2.7";
|
|
109
109
|
readonly 'react-dom': "19.2.7";
|
|
110
110
|
readonly rimraf: "6.1.3";
|
|
111
|
-
readonly rolldown: "1.
|
|
111
|
+
readonly rolldown: "1.2.0";
|
|
112
112
|
readonly 'simple-git': "3.36.0";
|
|
113
113
|
readonly 'source-map-support': "0.5.21";
|
|
114
114
|
readonly 'starlight-blog': "0.28.0";
|
|
115
|
-
readonly tailwindcss: "4.3.
|
|
116
|
-
readonly '@tailwindcss/vite': "4.3.
|
|
117
|
-
readonly tsx: "4.23.
|
|
118
|
-
readonly 'lucide-react': "1.
|
|
115
|
+
readonly tailwindcss: "4.3.3";
|
|
116
|
+
readonly '@tailwindcss/vite': "4.3.3";
|
|
117
|
+
readonly tsx: "4.23.1";
|
|
118
|
+
readonly 'lucide-react': "1.25.0";
|
|
119
119
|
readonly 'radix-ui': "1.6.2";
|
|
120
|
-
readonly shadcn: "4.13.
|
|
120
|
+
readonly shadcn: "4.13.1";
|
|
121
121
|
readonly 'tw-animate-css': "1.4.0";
|
|
122
122
|
readonly 'tailwind-merge': "3.6.0";
|
|
123
|
-
readonly vite: "8.1.
|
|
123
|
+
readonly vite: "8.1.5";
|
|
124
124
|
readonly typescript: "6.0.3";
|
|
125
125
|
readonly vitest: "4.1.10";
|
|
126
126
|
readonly zod: "4.4.3";
|
|
127
|
-
readonly ws: "8.21.
|
|
127
|
+
readonly ws: "8.21.1";
|
|
128
128
|
};
|
|
129
129
|
export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
130
130
|
/**
|
|
131
131
|
* Add versions to the given dependencies
|
|
132
132
|
*/
|
|
133
133
|
export declare const withVersions: (deps: ITsDepVersion[]) => {
|
|
134
|
-
[k: string]: "0.3.14" | "0.12.0" | "3.
|
|
134
|
+
[k: string]: "0.3.14" | "0.12.0" | "3.1090.0" | "3.972.58" | "1.0.0-alpha.10" | "2.34.0" | "7.7.0" | "22.2.2" | "10.3.0" | "23.1.0" | "1.12.1" | "1.15.43" | "1.29.0" | "0.22.0" | "0.2.3" | "0.0.57" | "0.3.0" | "1.63.1" | "7.8.2" | "1.10.0" | "1.170.18" | "1.168.22" | "1.167.21" | "1.162.0" | "1.162.2" | "3.0.205" | "1.0.151" | "3.0.1330" | "1.0.62" | "5.101.2" | "11.18.0" | "26.1.1" | "8.10.162" | "2.8.19" | "8.20.0" | "8.18.1" | "5.0.6" | "4.6.10" | "4.5.10" | "4.9.7" | "4.16.1" | "4.1.10" | "6.0.1" | "0.41.3" | "7.1.1" | "1.0.20" | "2.1132.0" | "2.261.0" | "3.12.0" | "10.7.0" | "2.8.6" | "5.6.2" | "0.7.1" | "2.1.1" | "15.0.0" | "3.9.1" | "0.28.1" | "1.0.31" | "1.0.5" | "2.5.4" | "7.8.0" | "3.1.5" | "5.2.1" | "3.3.3" | "9.1.7" | "11.3.6" | "11.0.4" | "4.0.0" | "3.5.3" | "2.0.0" | "12.0.1" | "22.2.9" | "3.5.0" | "8.22.0" | "3.3.1" | "19.2.7" | "6.1.3" | "1.2.0" | "3.36.0" | "0.5.21" | "0.28.0" | "4.3.3" | "4.23.1" | "1.25.0" | "1.6.2" | "4.13.1" | "1.4.0" | "3.6.0" | "8.1.5" | "6.0.3" | "4.4.3" | "8.21.1";
|
|
135
135
|
};
|
|
136
136
|
/**
|
|
137
137
|
* Versions for Python dependencies added by generators
|
|
@@ -141,17 +141,17 @@ export declare const PY_VERSIONS: {
|
|
|
141
141
|
readonly 'ag-ui-langgraph': "==0.0.42";
|
|
142
142
|
readonly 'ag-ui-protocol': "==0.1.19";
|
|
143
143
|
readonly 'ag-ui-strands': "==0.2.2";
|
|
144
|
-
readonly 'aws-lambda-powertools': "==3.31.
|
|
145
|
-
readonly 'aws-lambda-powertools[tracer]': "==3.31.
|
|
146
|
-
readonly 'aws-lambda-powertools[parser]': "==3.31.
|
|
144
|
+
readonly 'aws-lambda-powertools': "==3.31.1";
|
|
145
|
+
readonly 'aws-lambda-powertools[tracer]': "==3.31.1";
|
|
146
|
+
readonly 'aws-lambda-powertools[parser]': "==3.31.1";
|
|
147
147
|
readonly 'aws-opentelemetry-distro': "==0.18.0";
|
|
148
|
-
readonly 'bedrock-agentcore': "==1.18.
|
|
149
|
-
readonly boto3: "==1.43.
|
|
148
|
+
readonly 'bedrock-agentcore': "==1.18.1";
|
|
149
|
+
readonly boto3: "==1.43.51";
|
|
150
150
|
readonly checkov: "==3.3.8";
|
|
151
|
-
readonly fastapi: "==0.139.
|
|
152
|
-
readonly 'fastapi[standard]': "==0.139.
|
|
151
|
+
readonly fastapi: "==0.139.2";
|
|
152
|
+
readonly 'fastapi[standard]': "==0.139.2";
|
|
153
153
|
readonly httpx: "==0.28.1";
|
|
154
|
-
readonly langchain: "==1.3.
|
|
154
|
+
readonly langchain: "==1.3.14";
|
|
155
155
|
readonly 'langchain-aws': "==1.6.2";
|
|
156
156
|
readonly 'langchain-mcp-adapters': "==0.3.0";
|
|
157
157
|
readonly langgraph: "==1.2.9";
|
|
@@ -159,14 +159,14 @@ export declare const PY_VERSIONS: {
|
|
|
159
159
|
readonly 'pip-check-updates': "==0.29.0";
|
|
160
160
|
readonly 'pip-licenses': "==5.5.5";
|
|
161
161
|
readonly ruff: "==0.15.22";
|
|
162
|
-
readonly 'strands-agents': "==1.
|
|
163
|
-
readonly 'strands-agents[a2a]': "==1.
|
|
164
|
-
readonly 'strands-agents-tools': "==0.8.
|
|
165
|
-
readonly ty: "==0.0.
|
|
162
|
+
readonly 'strands-agents': "==1.48.0";
|
|
163
|
+
readonly 'strands-agents[a2a]': "==1.48.0";
|
|
164
|
+
readonly 'strands-agents-tools': "==0.8.4";
|
|
165
|
+
readonly ty: "==0.0.61";
|
|
166
166
|
readonly pynamodb: "==6.1.0";
|
|
167
167
|
readonly uvicorn: "==0.51.0";
|
|
168
|
-
readonly sqlmodel: "==0.0.
|
|
169
|
-
readonly alembic: "==1.18.
|
|
168
|
+
readonly sqlmodel: "==0.0.39";
|
|
169
|
+
readonly alembic: "==1.18.5";
|
|
170
170
|
readonly aiomysql: "==0.3.2";
|
|
171
171
|
readonly asyncpg: "==0.31.0";
|
|
172
172
|
};
|
|
@@ -202,7 +202,7 @@ export declare const CONTAINER_VERSIONS: {
|
|
|
202
202
|
* Pinned exactly (no range operator) so generated infrastructure is reproducible.
|
|
203
203
|
*/
|
|
204
204
|
export declare const TERRAFORM_VERSIONS: {
|
|
205
|
-
readonly aws: "6.
|
|
205
|
+
readonly aws: "6.55.0";
|
|
206
206
|
readonly random: "3.9.0";
|
|
207
207
|
readonly null: "3.3.0";
|
|
208
208
|
readonly archive: "2.8.0";
|
|
@@ -215,7 +215,7 @@ export type ITerraformProviderVersion = keyof typeof TERRAFORM_VERSIONS;
|
|
|
215
215
|
* generated `.tf` templates (e.g. `version = "<%- awsProviderVersion %>"`)
|
|
216
216
|
*/
|
|
217
217
|
export declare const terraformProviderVersions: () => {
|
|
218
|
-
awsProviderVersion: "6.
|
|
218
|
+
awsProviderVersion: "6.55.0";
|
|
219
219
|
randomProviderVersion: "3.9.0";
|
|
220
220
|
nullProviderVersion: "3.3.0";
|
|
221
221
|
archiveProviderVersion: "2.8.0";
|
package/src/utils/versions.js
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
*/ export const TS_VERSIONS = {
|
|
7
7
|
'@a2a-js/sdk': '0.3.14',
|
|
8
8
|
'@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.12.0',
|
|
9
|
-
'@aws-sdk/client-dynamodb': '3.
|
|
10
|
-
'@aws-sdk/client-bedrock-runtime': '3.
|
|
11
|
-
'@aws-sdk/client-s3': '3.
|
|
12
|
-
'@aws-sdk/client-sts': '3.
|
|
13
|
-
'@aws-sdk/credential-providers': '3.
|
|
14
|
-
'@aws-sdk/credential-provider-cognito-identity': '3.972.
|
|
15
|
-
'@aws-sdk/client-secrets-manager': '3.
|
|
16
|
-
'@aws-sdk/rds-signer': '3.
|
|
9
|
+
'@aws-sdk/client-dynamodb': '3.1090.0',
|
|
10
|
+
'@aws-sdk/client-bedrock-runtime': '3.1090.0',
|
|
11
|
+
'@aws-sdk/client-s3': '3.1090.0',
|
|
12
|
+
'@aws-sdk/client-sts': '3.1090.0',
|
|
13
|
+
'@aws-sdk/credential-providers': '3.1090.0',
|
|
14
|
+
'@aws-sdk/credential-provider-cognito-identity': '3.972.58',
|
|
15
|
+
'@aws-sdk/client-secrets-manager': '3.1090.0',
|
|
16
|
+
'@aws-sdk/rds-signer': '3.1090.0',
|
|
17
17
|
'@aws-smithy/server-apigateway': '1.0.0-alpha.10',
|
|
18
18
|
'@aws-smithy/server-node': '1.0.0-alpha.10',
|
|
19
19
|
'@aws-lambda-powertools/logger': '2.34.0',
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
'@aws-lambda-powertools/parameters': '2.34.0',
|
|
22
22
|
'@aws-lambda-powertools/tracer': '2.34.0',
|
|
23
23
|
'@aws-lambda-powertools/parser': '2.34.0',
|
|
24
|
-
'@aws-sdk/client-appconfigdata': '3.
|
|
24
|
+
'@aws-sdk/client-appconfigdata': '3.1090.0',
|
|
25
25
|
'@middy/core': '7.7.0',
|
|
26
|
-
'@nxlv/python': '22.2.
|
|
26
|
+
'@nxlv/python': '22.2.2',
|
|
27
27
|
'@nx-extend/terraform': '10.3.0',
|
|
28
28
|
'@nx/devkit': '23.1.0',
|
|
29
29
|
'@nx/react': '23.1.0',
|
|
30
30
|
'create-nx-workspace': '23.1.0',
|
|
31
|
-
'@swc-node/register': '1.
|
|
31
|
+
'@swc-node/register': '1.12.1',
|
|
32
32
|
'@swc/core': '1.15.43',
|
|
33
33
|
'@modelcontextprotocol/sdk': '1.29.0',
|
|
34
34
|
'@modelcontextprotocol/inspector': '0.22.0',
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
'@ag-ui/core': '0.0.57',
|
|
38
38
|
'@ag-ui/encoder': '0.0.57',
|
|
39
39
|
'agent-chat-cli': '0.3.0',
|
|
40
|
-
'@copilotkit/react-core': '1.
|
|
40
|
+
'@copilotkit/react-core': '1.63.1',
|
|
41
41
|
rxjs: '7.8.2',
|
|
42
|
-
'@strands-agents/sdk': '1.
|
|
43
|
-
'@tanstack/react-router': '1.170.
|
|
44
|
-
'@tanstack/router-plugin': '1.168.
|
|
45
|
-
'@tanstack/router-generator': '1.167.
|
|
42
|
+
'@strands-agents/sdk': '1.10.0',
|
|
43
|
+
'@tanstack/react-router': '1.170.18',
|
|
44
|
+
'@tanstack/router-plugin': '1.168.22',
|
|
45
|
+
'@tanstack/router-generator': '1.167.21',
|
|
46
46
|
'@tanstack/virtual-file-routes': '1.162.0',
|
|
47
47
|
'@tanstack/router-utils': '1.162.2',
|
|
48
|
-
'@cloudscape-design/board-components': '3.0.
|
|
49
|
-
'@cloudscape-design/chat-components': '1.0.
|
|
50
|
-
'@cloudscape-design/components': '3.0.
|
|
48
|
+
'@cloudscape-design/board-components': '3.0.205',
|
|
49
|
+
'@cloudscape-design/chat-components': '1.0.151',
|
|
50
|
+
'@cloudscape-design/components': '3.0.1330',
|
|
51
51
|
'@cloudscape-design/global-styles': '1.0.62',
|
|
52
52
|
'@tanstack/react-query': '5.101.2',
|
|
53
53
|
'@tanstack/react-query-devtools': '5.101.2',
|
|
@@ -60,20 +60,20 @@
|
|
|
60
60
|
'@types/pg': '8.20.0',
|
|
61
61
|
'@types/ws': '8.18.1',
|
|
62
62
|
'@types/express': '5.0.6',
|
|
63
|
-
'@smithy/config-resolver': '4.6.
|
|
64
|
-
'@smithy/node-config-provider': '4.5.
|
|
65
|
-
'@smithy/node-http-handler': '4.9.
|
|
63
|
+
'@smithy/config-resolver': '4.6.10',
|
|
64
|
+
'@smithy/node-config-provider': '4.5.10',
|
|
65
|
+
'@smithy/node-http-handler': '4.9.7',
|
|
66
66
|
'@smithy/types': '4.16.1',
|
|
67
67
|
'@vitest/coverage-v8': '4.1.10',
|
|
68
68
|
'@vitest/ui': '4.1.10',
|
|
69
69
|
'@astrojs/react': '6.0.1',
|
|
70
70
|
'@astrojs/starlight': '0.41.3',
|
|
71
|
-
astro: '7.
|
|
71
|
+
astro: '7.1.1',
|
|
72
72
|
aws4fetch: '1.0.20',
|
|
73
|
-
'aws-cdk': '2.
|
|
73
|
+
'aws-cdk': '2.1132.0',
|
|
74
74
|
'aws-cdk-lib': '2.261.0',
|
|
75
75
|
'aws-xray-sdk-core': '3.12.0',
|
|
76
|
-
constructs: '10.
|
|
76
|
+
constructs: '10.7.0',
|
|
77
77
|
cors: '2.8.6',
|
|
78
78
|
chalk: '5.6.2',
|
|
79
79
|
'class-variance-authority': '0.7.1',
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
esbuild: '0.28.1',
|
|
84
84
|
'event-source-polyfill': '1.0.31',
|
|
85
85
|
'@types/event-source-polyfill': '1.0.5',
|
|
86
|
-
'@biomejs/biome': '2.5.
|
|
86
|
+
'@biomejs/biome': '2.5.4',
|
|
87
87
|
'@prisma/adapter-mariadb': '7.8.0',
|
|
88
88
|
'@prisma/adapter-pg': '7.8.0',
|
|
89
89
|
'@prisma/client': '7.8.0',
|
|
@@ -106,23 +106,23 @@
|
|
|
106
106
|
react: '19.2.7',
|
|
107
107
|
'react-dom': '19.2.7',
|
|
108
108
|
rimraf: '6.1.3',
|
|
109
|
-
rolldown: '1.
|
|
109
|
+
rolldown: '1.2.0',
|
|
110
110
|
'simple-git': '3.36.0',
|
|
111
111
|
'source-map-support': '0.5.21',
|
|
112
112
|
'starlight-blog': '0.28.0',
|
|
113
|
-
tailwindcss: '4.3.
|
|
114
|
-
'@tailwindcss/vite': '4.3.
|
|
115
|
-
tsx: '4.23.
|
|
116
|
-
'lucide-react': '1.
|
|
113
|
+
tailwindcss: '4.3.3',
|
|
114
|
+
'@tailwindcss/vite': '4.3.3',
|
|
115
|
+
tsx: '4.23.1',
|
|
116
|
+
'lucide-react': '1.25.0',
|
|
117
117
|
'radix-ui': '1.6.2',
|
|
118
|
-
shadcn: '4.13.
|
|
118
|
+
shadcn: '4.13.1',
|
|
119
119
|
'tw-animate-css': '1.4.0',
|
|
120
120
|
'tailwind-merge': '3.6.0',
|
|
121
|
-
vite: '8.1.
|
|
121
|
+
vite: '8.1.5',
|
|
122
122
|
typescript: '6.0.3',
|
|
123
123
|
vitest: '4.1.10',
|
|
124
124
|
zod: '4.4.3',
|
|
125
|
-
ws: '8.21.
|
|
125
|
+
ws: '8.21.1'
|
|
126
126
|
};
|
|
127
127
|
/**
|
|
128
128
|
* Add versions to the given dependencies
|
|
@@ -137,17 +137,17 @@
|
|
|
137
137
|
'ag-ui-langgraph': '==0.0.42',
|
|
138
138
|
'ag-ui-protocol': '==0.1.19',
|
|
139
139
|
'ag-ui-strands': '==0.2.2',
|
|
140
|
-
'aws-lambda-powertools': '==3.31.
|
|
141
|
-
'aws-lambda-powertools[tracer]': '==3.31.
|
|
142
|
-
'aws-lambda-powertools[parser]': '==3.31.
|
|
140
|
+
'aws-lambda-powertools': '==3.31.1',
|
|
141
|
+
'aws-lambda-powertools[tracer]': '==3.31.1',
|
|
142
|
+
'aws-lambda-powertools[parser]': '==3.31.1',
|
|
143
143
|
'aws-opentelemetry-distro': '==0.18.0',
|
|
144
|
-
'bedrock-agentcore': '==1.18.
|
|
145
|
-
boto3: '==1.43.
|
|
144
|
+
'bedrock-agentcore': '==1.18.1',
|
|
145
|
+
boto3: '==1.43.51',
|
|
146
146
|
checkov: '==3.3.8',
|
|
147
|
-
fastapi: '==0.139.
|
|
148
|
-
'fastapi[standard]': '==0.139.
|
|
147
|
+
fastapi: '==0.139.2',
|
|
148
|
+
'fastapi[standard]': '==0.139.2',
|
|
149
149
|
httpx: '==0.28.1',
|
|
150
|
-
langchain: '==1.3.
|
|
150
|
+
langchain: '==1.3.14',
|
|
151
151
|
'langchain-aws': '==1.6.2',
|
|
152
152
|
'langchain-mcp-adapters': '==0.3.0',
|
|
153
153
|
langgraph: '==1.2.9',
|
|
@@ -155,14 +155,14 @@
|
|
|
155
155
|
'pip-check-updates': '==0.29.0',
|
|
156
156
|
'pip-licenses': '==5.5.5',
|
|
157
157
|
ruff: '==0.15.22',
|
|
158
|
-
'strands-agents': '==1.
|
|
159
|
-
'strands-agents[a2a]': '==1.
|
|
160
|
-
'strands-agents-tools': '==0.8.
|
|
161
|
-
ty: '==0.0.
|
|
158
|
+
'strands-agents': '==1.48.0',
|
|
159
|
+
'strands-agents[a2a]': '==1.48.0',
|
|
160
|
+
'strands-agents-tools': '==0.8.4',
|
|
161
|
+
ty: '==0.0.61',
|
|
162
162
|
pynamodb: '==6.1.0',
|
|
163
163
|
uvicorn: '==0.51.0',
|
|
164
|
-
sqlmodel: '==0.0.
|
|
165
|
-
alembic: '==1.18.
|
|
164
|
+
sqlmodel: '==0.0.39',
|
|
165
|
+
alembic: '==1.18.5',
|
|
166
166
|
aiomysql: '==0.3.2',
|
|
167
167
|
asyncpg: '==0.31.0'
|
|
168
168
|
};
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
* Exact versions for Terraform providers used by generated `.tf` modules.
|
|
194
194
|
* Pinned exactly (no range operator) so generated infrastructure is reproducible.
|
|
195
195
|
*/ export const TERRAFORM_VERSIONS = {
|
|
196
|
-
aws: '6.
|
|
196
|
+
aws: '6.55.0',
|
|
197
197
|
random: '3.9.0',
|
|
198
198
|
null: '3.3.0',
|
|
199
199
|
archive: '2.8.0',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"sourcesContent":["/**\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n/**\n * Versons for TypeScript dependencies added by generators\n */\nexport const TS_VERSIONS = {\n '@a2a-js/sdk': '0.3.14',\n '@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.12.0',\n '@aws-sdk/client-dynamodb': '3.1085.0',\n '@aws-sdk/client-bedrock-runtime': '3.1085.0',\n '@aws-sdk/client-s3': '3.1085.0',\n '@aws-sdk/client-sts': '3.1085.0',\n '@aws-sdk/credential-providers': '3.1085.0',\n '@aws-sdk/credential-provider-cognito-identity': '3.972.56',\n '@aws-sdk/client-secrets-manager': '3.1085.0',\n '@aws-sdk/rds-signer': '3.1085.0',\n '@aws-smithy/server-apigateway': '1.0.0-alpha.10',\n '@aws-smithy/server-node': '1.0.0-alpha.10',\n '@aws-lambda-powertools/logger': '2.34.0',\n '@aws-lambda-powertools/metrics': '2.34.0',\n '@aws-lambda-powertools/parameters': '2.34.0',\n '@aws-lambda-powertools/tracer': '2.34.0',\n '@aws-lambda-powertools/parser': '2.34.0',\n '@aws-sdk/client-appconfigdata': '3.1085.0',\n '@middy/core': '7.7.0',\n '@nxlv/python': '22.2.1',\n '@nx-extend/terraform': '10.3.0',\n '@nx/devkit': '23.1.0',\n '@nx/react': '23.1.0',\n 'create-nx-workspace': '23.1.0',\n '@swc-node/register': '1.11.1',\n '@swc/core': '1.15.43',\n '@modelcontextprotocol/sdk': '1.29.0',\n '@modelcontextprotocol/inspector': '0.22.0',\n '@ag-ui/aws-strands': '0.2.3',\n '@ag-ui/client': '0.0.57',\n '@ag-ui/core': '0.0.57',\n '@ag-ui/encoder': '0.0.57',\n 'agent-chat-cli': '0.3.0',\n '@copilotkit/react-core': '1.62.3',\n rxjs: '7.8.2',\n '@strands-agents/sdk': '1.9.0',\n '@tanstack/react-router': '1.170.17',\n '@tanstack/router-plugin': '1.168.19',\n '@tanstack/router-generator': '1.167.18',\n '@tanstack/virtual-file-routes': '1.162.0',\n '@tanstack/router-utils': '1.162.2',\n '@cloudscape-design/board-components': '3.0.201',\n '@cloudscape-design/chat-components': '1.0.149',\n '@cloudscape-design/components': '3.0.1325',\n '@cloudscape-design/global-styles': '1.0.62',\n '@tanstack/react-query': '5.101.2',\n '@tanstack/react-query-devtools': '5.101.2',\n '@trpc/tanstack-react-query': '11.18.0',\n '@trpc/client': '11.18.0',\n '@trpc/server': '11.18.0',\n '@types/node': '26.1.1',\n '@types/aws-lambda': '8.10.162',\n '@types/cors': '2.8.19',\n '@types/pg': '8.20.0',\n '@types/ws': '8.18.1',\n '@types/express': '5.0.6',\n '@smithy/config-resolver': '4.6.8',\n '@smithy/node-config-provider': '4.5.8',\n '@smithy/node-http-handler': '4.9.5',\n '@smithy/types': '4.16.1',\n '@vitest/coverage-v8': '4.1.10',\n '@vitest/ui': '4.1.10',\n '@astrojs/react': '6.0.1',\n '@astrojs/starlight': '0.41.3',\n astro: '7.0.7',\n aws4fetch: '1.0.20',\n 'aws-cdk': '2.1130.0',\n 'aws-cdk-lib': '2.261.0',\n 'aws-xray-sdk-core': '3.12.0',\n constructs: '10.6.0',\n cors: '2.8.6',\n chalk: '5.6.2',\n 'class-variance-authority': '0.7.1',\n clsx: '2.1.1',\n commander: '15.0.0',\n electrodb: '3.9.1',\n esbuild: '0.28.1',\n 'event-source-polyfill': '1.0.31',\n '@types/event-source-polyfill': '1.0.5',\n '@biomejs/biome': '2.5.3',\n '@prisma/adapter-mariadb': '7.8.0',\n '@prisma/adapter-pg': '7.8.0',\n '@prisma/client': '7.8.0',\n ejs: '6.0.1',\n '@types/ejs': '3.1.5',\n express: '5.2.1',\n 'fast-glob': '3.3.3',\n husky: '9.1.7',\n 'fs-extra': '11.3.6',\n '@types/fs-extra': '11.0.4',\n 'make-dir-cli': '4.0.0',\n mariadb: '3.5.3',\n ncp: '2.0.0',\n npm: '12.0.1',\n 'npm-check-updates': '22.2.9',\n 'oidc-client-ts': '3.5.0',\n pg: '8.22.0',\n prisma: '7.8.0',\n 'react-oidc-context': '3.3.1',\n react: '19.2.7',\n 'react-dom': '19.2.7',\n rimraf: '6.1.3',\n rolldown: '1.1.5',\n 'simple-git': '3.36.0',\n 'source-map-support': '0.5.21',\n 'starlight-blog': '0.28.0',\n tailwindcss: '4.3.2',\n '@tailwindcss/vite': '4.3.2',\n tsx: '4.23.0',\n 'lucide-react': '1.24.0',\n 'radix-ui': '1.6.2',\n shadcn: '4.13.0',\n 'tw-animate-css': '1.4.0',\n 'tailwind-merge': '3.6.0',\n vite: '8.1.4',\n typescript: '6.0.3',\n vitest: '4.1.10',\n zod: '4.4.3',\n ws: '8.21.0',\n} as const;\nexport type ITsDepVersion = keyof typeof TS_VERSIONS;\n\n/**\n * Add versions to the given dependencies\n */\nexport const withVersions = (deps: ITsDepVersion[]) =>\n Object.fromEntries(deps.map((dep) => [dep, TS_VERSIONS[dep]]));\n\n/**\n * Versions for Python dependencies added by generators\n */\nexport const PY_VERSIONS = {\n 'a2a-sdk': '==0.3.26',\n 'ag-ui-langgraph': '==0.0.42',\n 'ag-ui-protocol': '==0.1.19',\n 'ag-ui-strands': '==0.2.2',\n 'aws-lambda-powertools': '==3.31.0',\n 'aws-lambda-powertools[tracer]': '==3.31.0',\n 'aws-lambda-powertools[parser]': '==3.31.0',\n 'aws-opentelemetry-distro': '==0.18.0',\n 'bedrock-agentcore': '==1.18.0',\n boto3: '==1.43.46',\n checkov: '==3.3.8',\n fastapi: '==0.139.0',\n 'fastapi[standard]': '==0.139.0',\n httpx: '==0.28.1',\n langchain: '==1.3.13',\n 'langchain-aws': '==1.6.2',\n 'langchain-mcp-adapters': '==0.3.0',\n langgraph: '==1.2.9',\n mcp: '==1.28.1',\n 'pip-check-updates': '==0.29.0',\n 'pip-licenses': '==5.5.5',\n ruff: '==0.15.22',\n 'strands-agents': '==1.47.0',\n 'strands-agents[a2a]': '==1.47.0',\n 'strands-agents-tools': '==0.8.3',\n ty: '==0.0.59',\n pynamodb: '==6.1.0',\n uvicorn: '==0.51.0',\n sqlmodel: '==0.0.38',\n alembic: '==1.18.4',\n aiomysql: '==0.3.2',\n asyncpg: '==0.31.0',\n} as const;\nexport type IPyDepVersion = keyof typeof PY_VERSIONS;\n\n/**\n * Add versions to the given dependencies\n */\nexport const withPyVersions = (deps: IPyDepVersion[]) =>\n deps.map((dep) => `${dep}${PY_VERSIONS[dep]}`);\n\n/**\n * Versions for vendored tools\n */\nexport const VENDORED_VERSIONS = {\n 'git-secrets': '1.3.0',\n} as const;\n\n/**\n * Base container images used by generated Dockerfiles. Pinned exactly so\n * generated images are reproducible, and chosen to be free of known\n * HIGH/CRITICAL vulnerabilities at time of generation.\n */\nexport const BASE_IMAGES = {\n node: 'public.ecr.aws/docker/library/node:lts-slim',\n python: 'public.ecr.aws/docker/library/python:3.14-slim',\n} as const;\n\n/**\n * Versions for container tooling used by generated image build/scan targets.\n * Pinned exactly so generated images are reproducible.\n */\nexport const CONTAINER_VERSIONS = {\n // ECR-hosted Trivy image used to scan built images during the build.\n trivy: '0.72.0',\n} as const;\n\n/**\n * Exact versions for Terraform providers used by generated `.tf` modules.\n * Pinned exactly (no range operator) so generated infrastructure is reproducible.\n */\nexport const TERRAFORM_VERSIONS = {\n aws: '6.54.0',\n random: '3.9.0',\n null: '3.3.0',\n archive: '2.8.0',\n external: '2.4.0',\n local: '2.9.0',\n} as const;\nexport type ITerraformProviderVersion = keyof typeof TERRAFORM_VERSIONS;\n\n/**\n * Substitution variables exposing Terraform provider version constraints to\n * generated `.tf` templates (e.g. `version = \"<%- awsProviderVersion %>\"`)\n */\nexport const terraformProviderVersions = () => ({\n awsProviderVersion: TERRAFORM_VERSIONS.aws,\n randomProviderVersion: TERRAFORM_VERSIONS.random,\n nullProviderVersion: TERRAFORM_VERSIONS.null,\n archiveProviderVersion: TERRAFORM_VERSIONS.archive,\n externalProviderVersion: TERRAFORM_VERSIONS.external,\n localProviderVersion: TERRAFORM_VERSIONS.local,\n});\n"],"names":["TS_VERSIONS","rxjs","astro","aws4fetch","constructs","cors","chalk","clsx","commander","electrodb","esbuild","ejs","express","husky","mariadb","ncp","npm","pg","prisma","react","rimraf","rolldown","tailwindcss","tsx","shadcn","vite","typescript","vitest","zod","ws","withVersions","deps","Object","fromEntries","map","dep","PY_VERSIONS","boto3","checkov","fastapi","httpx","langchain","langgraph","mcp","ruff","ty","pynamodb","uvicorn","sqlmodel","alembic","aiomysql","asyncpg","withPyVersions","VENDORED_VERSIONS","BASE_IMAGES","node","python","CONTAINER_VERSIONS","trivy","TERRAFORM_VERSIONS","aws","random","null","archive","external","local","terraformProviderVersions","awsProviderVersion","randomProviderVersion","nullProviderVersion","archiveProviderVersion","externalProviderVersion","localProviderVersion"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"sourcesContent":["/**\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n/**\n * Versons for TypeScript dependencies added by generators\n */\nexport const TS_VERSIONS = {\n '@a2a-js/sdk': '0.3.14',\n '@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.12.0',\n '@aws-sdk/client-dynamodb': '3.1090.0',\n '@aws-sdk/client-bedrock-runtime': '3.1090.0',\n '@aws-sdk/client-s3': '3.1090.0',\n '@aws-sdk/client-sts': '3.1090.0',\n '@aws-sdk/credential-providers': '3.1090.0',\n '@aws-sdk/credential-provider-cognito-identity': '3.972.58',\n '@aws-sdk/client-secrets-manager': '3.1090.0',\n '@aws-sdk/rds-signer': '3.1090.0',\n '@aws-smithy/server-apigateway': '1.0.0-alpha.10',\n '@aws-smithy/server-node': '1.0.0-alpha.10',\n '@aws-lambda-powertools/logger': '2.34.0',\n '@aws-lambda-powertools/metrics': '2.34.0',\n '@aws-lambda-powertools/parameters': '2.34.0',\n '@aws-lambda-powertools/tracer': '2.34.0',\n '@aws-lambda-powertools/parser': '2.34.0',\n '@aws-sdk/client-appconfigdata': '3.1090.0',\n '@middy/core': '7.7.0',\n '@nxlv/python': '22.2.2',\n '@nx-extend/terraform': '10.3.0',\n '@nx/devkit': '23.1.0',\n '@nx/react': '23.1.0',\n 'create-nx-workspace': '23.1.0',\n '@swc-node/register': '1.12.1',\n '@swc/core': '1.15.43',\n '@modelcontextprotocol/sdk': '1.29.0',\n '@modelcontextprotocol/inspector': '0.22.0',\n '@ag-ui/aws-strands': '0.2.3',\n '@ag-ui/client': '0.0.57',\n '@ag-ui/core': '0.0.57',\n '@ag-ui/encoder': '0.0.57',\n 'agent-chat-cli': '0.3.0',\n '@copilotkit/react-core': '1.63.1',\n rxjs: '7.8.2',\n '@strands-agents/sdk': '1.10.0',\n '@tanstack/react-router': '1.170.18',\n '@tanstack/router-plugin': '1.168.22',\n '@tanstack/router-generator': '1.167.21',\n '@tanstack/virtual-file-routes': '1.162.0',\n '@tanstack/router-utils': '1.162.2',\n '@cloudscape-design/board-components': '3.0.205',\n '@cloudscape-design/chat-components': '1.0.151',\n '@cloudscape-design/components': '3.0.1330',\n '@cloudscape-design/global-styles': '1.0.62',\n '@tanstack/react-query': '5.101.2',\n '@tanstack/react-query-devtools': '5.101.2',\n '@trpc/tanstack-react-query': '11.18.0',\n '@trpc/client': '11.18.0',\n '@trpc/server': '11.18.0',\n '@types/node': '26.1.1',\n '@types/aws-lambda': '8.10.162',\n '@types/cors': '2.8.19',\n '@types/pg': '8.20.0',\n '@types/ws': '8.18.1',\n '@types/express': '5.0.6',\n '@smithy/config-resolver': '4.6.10',\n '@smithy/node-config-provider': '4.5.10',\n '@smithy/node-http-handler': '4.9.7',\n '@smithy/types': '4.16.1',\n '@vitest/coverage-v8': '4.1.10',\n '@vitest/ui': '4.1.10',\n '@astrojs/react': '6.0.1',\n '@astrojs/starlight': '0.41.3',\n astro: '7.1.1',\n aws4fetch: '1.0.20',\n 'aws-cdk': '2.1132.0',\n 'aws-cdk-lib': '2.261.0',\n 'aws-xray-sdk-core': '3.12.0',\n constructs: '10.7.0',\n cors: '2.8.6',\n chalk: '5.6.2',\n 'class-variance-authority': '0.7.1',\n clsx: '2.1.1',\n commander: '15.0.0',\n electrodb: '3.9.1',\n esbuild: '0.28.1',\n 'event-source-polyfill': '1.0.31',\n '@types/event-source-polyfill': '1.0.5',\n '@biomejs/biome': '2.5.4',\n '@prisma/adapter-mariadb': '7.8.0',\n '@prisma/adapter-pg': '7.8.0',\n '@prisma/client': '7.8.0',\n ejs: '6.0.1',\n '@types/ejs': '3.1.5',\n express: '5.2.1',\n 'fast-glob': '3.3.3',\n husky: '9.1.7',\n 'fs-extra': '11.3.6',\n '@types/fs-extra': '11.0.4',\n 'make-dir-cli': '4.0.0',\n mariadb: '3.5.3',\n ncp: '2.0.0',\n npm: '12.0.1',\n 'npm-check-updates': '22.2.9',\n 'oidc-client-ts': '3.5.0',\n pg: '8.22.0',\n prisma: '7.8.0',\n 'react-oidc-context': '3.3.1',\n react: '19.2.7',\n 'react-dom': '19.2.7',\n rimraf: '6.1.3',\n rolldown: '1.2.0',\n 'simple-git': '3.36.0',\n 'source-map-support': '0.5.21',\n 'starlight-blog': '0.28.0',\n tailwindcss: '4.3.3',\n '@tailwindcss/vite': '4.3.3',\n tsx: '4.23.1',\n 'lucide-react': '1.25.0',\n 'radix-ui': '1.6.2',\n shadcn: '4.13.1',\n 'tw-animate-css': '1.4.0',\n 'tailwind-merge': '3.6.0',\n vite: '8.1.5',\n typescript: '6.0.3',\n vitest: '4.1.10',\n zod: '4.4.3',\n ws: '8.21.1',\n} as const;\nexport type ITsDepVersion = keyof typeof TS_VERSIONS;\n\n/**\n * Add versions to the given dependencies\n */\nexport const withVersions = (deps: ITsDepVersion[]) =>\n Object.fromEntries(deps.map((dep) => [dep, TS_VERSIONS[dep]]));\n\n/**\n * Versions for Python dependencies added by generators\n */\nexport const PY_VERSIONS = {\n 'a2a-sdk': '==0.3.26',\n 'ag-ui-langgraph': '==0.0.42',\n 'ag-ui-protocol': '==0.1.19',\n 'ag-ui-strands': '==0.2.2',\n 'aws-lambda-powertools': '==3.31.1',\n 'aws-lambda-powertools[tracer]': '==3.31.1',\n 'aws-lambda-powertools[parser]': '==3.31.1',\n 'aws-opentelemetry-distro': '==0.18.0',\n 'bedrock-agentcore': '==1.18.1',\n boto3: '==1.43.51',\n checkov: '==3.3.8',\n fastapi: '==0.139.2',\n 'fastapi[standard]': '==0.139.2',\n httpx: '==0.28.1',\n langchain: '==1.3.14',\n 'langchain-aws': '==1.6.2',\n 'langchain-mcp-adapters': '==0.3.0',\n langgraph: '==1.2.9',\n mcp: '==1.28.1',\n 'pip-check-updates': '==0.29.0',\n 'pip-licenses': '==5.5.5',\n ruff: '==0.15.22',\n 'strands-agents': '==1.48.0',\n 'strands-agents[a2a]': '==1.48.0',\n 'strands-agents-tools': '==0.8.4',\n ty: '==0.0.61',\n pynamodb: '==6.1.0',\n uvicorn: '==0.51.0',\n sqlmodel: '==0.0.39',\n alembic: '==1.18.5',\n aiomysql: '==0.3.2',\n asyncpg: '==0.31.0',\n} as const;\nexport type IPyDepVersion = keyof typeof PY_VERSIONS;\n\n/**\n * Add versions to the given dependencies\n */\nexport const withPyVersions = (deps: IPyDepVersion[]) =>\n deps.map((dep) => `${dep}${PY_VERSIONS[dep]}`);\n\n/**\n * Versions for vendored tools\n */\nexport const VENDORED_VERSIONS = {\n 'git-secrets': '1.3.0',\n} as const;\n\n/**\n * Base container images used by generated Dockerfiles. Pinned exactly so\n * generated images are reproducible, and chosen to be free of known\n * HIGH/CRITICAL vulnerabilities at time of generation.\n */\nexport const BASE_IMAGES = {\n node: 'public.ecr.aws/docker/library/node:lts-slim',\n python: 'public.ecr.aws/docker/library/python:3.14-slim',\n} as const;\n\n/**\n * Versions for container tooling used by generated image build/scan targets.\n * Pinned exactly so generated images are reproducible.\n */\nexport const CONTAINER_VERSIONS = {\n // ECR-hosted Trivy image used to scan built images during the build.\n trivy: '0.72.0',\n} as const;\n\n/**\n * Exact versions for Terraform providers used by generated `.tf` modules.\n * Pinned exactly (no range operator) so generated infrastructure is reproducible.\n */\nexport const TERRAFORM_VERSIONS = {\n aws: '6.55.0',\n random: '3.9.0',\n null: '3.3.0',\n archive: '2.8.0',\n external: '2.4.0',\n local: '2.9.0',\n} as const;\nexport type ITerraformProviderVersion = keyof typeof TERRAFORM_VERSIONS;\n\n/**\n * Substitution variables exposing Terraform provider version constraints to\n * generated `.tf` templates (e.g. `version = \"<%- awsProviderVersion %>\"`)\n */\nexport const terraformProviderVersions = () => ({\n awsProviderVersion: TERRAFORM_VERSIONS.aws,\n randomProviderVersion: TERRAFORM_VERSIONS.random,\n nullProviderVersion: TERRAFORM_VERSIONS.null,\n archiveProviderVersion: TERRAFORM_VERSIONS.archive,\n externalProviderVersion: TERRAFORM_VERSIONS.external,\n localProviderVersion: TERRAFORM_VERSIONS.local,\n});\n"],"names":["TS_VERSIONS","rxjs","astro","aws4fetch","constructs","cors","chalk","clsx","commander","electrodb","esbuild","ejs","express","husky","mariadb","ncp","npm","pg","prisma","react","rimraf","rolldown","tailwindcss","tsx","shadcn","vite","typescript","vitest","zod","ws","withVersions","deps","Object","fromEntries","map","dep","PY_VERSIONS","boto3","checkov","fastapi","httpx","langchain","langgraph","mcp","ruff","ty","pynamodb","uvicorn","sqlmodel","alembic","aiomysql","asyncpg","withPyVersions","VENDORED_VERSIONS","BASE_IMAGES","node","python","CONTAINER_VERSIONS","trivy","TERRAFORM_VERSIONS","aws","random","null","archive","external","local","terraformProviderVersions","awsProviderVersion","randomProviderVersion","nullProviderVersion","archiveProviderVersion","externalProviderVersion","localProviderVersion"],"mappings":"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"}
|