@aws/nx-plugin 0.64.1 → 0.66.0
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 +662 -187
- package/README.md +6 -3
- package/generators.json +6 -0
- package/package.json +14 -14
- package/sdk/ts.d.ts +2 -0
- package/sdk/ts.js +20 -17
- package/sdk/ts.js.map +1 -1
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +31 -31
- package/src/preset/__snapshots__/generator.spec.ts.snap +5 -3
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +8 -8
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +5 -5
- package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +93 -49
- package/src/ts/strands-agent/__snapshots__/generator.spec.ts.snap +1035 -0
- package/src/ts/strands-agent/files/app/agent-core-mcp-client.ts.template +132 -0
- package/src/ts/strands-agent/files/app/agent-core-trpc-client.ts.template +124 -0
- package/src/ts/strands-agent/files/app/agent.ts.template +20 -0
- package/src/ts/strands-agent/files/app/client.ts.template +28 -0
- package/src/ts/strands-agent/files/app/index.ts.template +54 -0
- package/src/ts/strands-agent/files/app/init.ts.template +8 -0
- package/src/ts/strands-agent/files/app/router.ts.template +34 -0
- package/src/ts/strands-agent/files/app/schema/z-async-iterable.ts.template +77 -0
- package/src/ts/strands-agent/files/deploy/Dockerfile.template +16 -0
- package/src/ts/strands-agent/generator.d.ts +10 -0
- package/src/ts/strands-agent/generator.js +115 -0
- package/src/ts/strands-agent/generator.js.map +1 -0
- package/src/ts/strands-agent/schema.d.ts +15 -0
- package/src/ts/strands-agent/schema.json +41 -0
- package/src/utils/versions.d.ts +62 -59
- package/src/utils/versions.js +61 -58
- package/src/utils/versions.js.map +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
|
+
"$id": "ts#strands-agent",
|
|
4
|
+
"title": "ts#strands-agent",
|
|
5
|
+
"description": "Add a Strands Agent to a TypeScript project",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"project": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "The project to add the Strands Agent to",
|
|
11
|
+
"$default": {
|
|
12
|
+
"$source": "argv",
|
|
13
|
+
"index": 0
|
|
14
|
+
},
|
|
15
|
+
"x-prompt": "Select the TypeScript project to add the Strands Agent to",
|
|
16
|
+
"x-dropdown": "projects"
|
|
17
|
+
},
|
|
18
|
+
"computeType": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "The type of compute to host your Strands Agent.",
|
|
21
|
+
"x-prompt": "How would you like to host your Strands Agent server?",
|
|
22
|
+
"enum": ["BedrockAgentCoreRuntime", "None"],
|
|
23
|
+
"default": "BedrockAgentCoreRuntime",
|
|
24
|
+
"x-priority": "important"
|
|
25
|
+
},
|
|
26
|
+
"name": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"description": "The name of your Strands Agent (default: agent)",
|
|
29
|
+
"x-prompt": "What would you like to call your Strands Agent? (default: agent)"
|
|
30
|
+
},
|
|
31
|
+
"iacProvider": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "The preferred IaC provider. By default this is inherited from your initial selection.",
|
|
34
|
+
"enum": ["Inherit", "CDK", "Terraform"],
|
|
35
|
+
"x-priority": "important",
|
|
36
|
+
"default": "Inherit",
|
|
37
|
+
"x-prompt": "Which provider would you like to manage your infrastructure? (default: Inherit)"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"required": ["project"]
|
|
41
|
+
}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -6,97 +6,100 @@
|
|
|
6
6
|
* Versons for TypeScript dependencies added by generators
|
|
7
7
|
*/
|
|
8
8
|
export declare const TS_VERSIONS: {
|
|
9
|
-
readonly '@aws-sdk/client-cognito-identity': "3.
|
|
10
|
-
readonly '@aws-sdk/client-dynamodb': "3.
|
|
11
|
-
readonly '@aws-sdk/credential-providers': "3.
|
|
12
|
-
readonly '@aws-sdk/credential-provider-cognito-identity': "3.
|
|
9
|
+
readonly '@aws-sdk/client-cognito-identity': "3.968.0";
|
|
10
|
+
readonly '@aws-sdk/client-dynamodb': "3.968.0";
|
|
11
|
+
readonly '@aws-sdk/credential-providers': "3.968.0";
|
|
12
|
+
readonly '@aws-sdk/credential-provider-cognito-identity': "3.968.0";
|
|
13
13
|
readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
|
|
14
14
|
readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
|
|
15
|
-
readonly '@aws-lambda-powertools/logger': "2.
|
|
16
|
-
readonly '@aws-lambda-powertools/metrics': "2.
|
|
17
|
-
readonly '@aws-lambda-powertools/tracer': "2.
|
|
18
|
-
readonly '@aws-lambda-powertools/parser': "2.
|
|
15
|
+
readonly '@aws-lambda-powertools/logger': "2.30.2";
|
|
16
|
+
readonly '@aws-lambda-powertools/metrics': "2.30.2";
|
|
17
|
+
readonly '@aws-lambda-powertools/tracer': "2.30.2";
|
|
18
|
+
readonly '@aws-lambda-powertools/parser': "2.30.2";
|
|
19
19
|
readonly '@middy/core': "6.4.5";
|
|
20
|
-
readonly '@nxlv/python': "21.2.
|
|
20
|
+
readonly '@nxlv/python': "21.2.3";
|
|
21
21
|
readonly '@nx-extend/terraform': "9.0.1";
|
|
22
|
-
readonly '@nx/devkit': "22.
|
|
23
|
-
readonly '@nx/react': "22.
|
|
24
|
-
readonly 'create-nx-workspace': "22.
|
|
25
|
-
readonly '@modelcontextprotocol/sdk': "1.25.
|
|
22
|
+
readonly '@nx/devkit': "22.3.3";
|
|
23
|
+
readonly '@nx/react': "22.3.3";
|
|
24
|
+
readonly 'create-nx-workspace': "22.3.3";
|
|
25
|
+
readonly '@modelcontextprotocol/sdk': "1.25.2";
|
|
26
26
|
readonly '@modelcontextprotocol/inspector': "0.18.0";
|
|
27
|
-
readonly '@
|
|
28
|
-
readonly '@tanstack/router
|
|
29
|
-
readonly '@tanstack/router-
|
|
30
|
-
readonly '@tanstack/
|
|
31
|
-
readonly '@tanstack/
|
|
32
|
-
readonly '@
|
|
33
|
-
readonly '@cloudscape-design/components': "3.0.
|
|
27
|
+
readonly '@strands-agents/sdk': "0.1.5";
|
|
28
|
+
readonly '@tanstack/react-router': "1.149.3";
|
|
29
|
+
readonly '@tanstack/router-plugin': "1.149.3";
|
|
30
|
+
readonly '@tanstack/router-generator': "1.149.3";
|
|
31
|
+
readonly '@tanstack/virtual-file-routes': "1.145.4";
|
|
32
|
+
readonly '@tanstack/router-utils': "1.143.11";
|
|
33
|
+
readonly '@cloudscape-design/board-components': "3.0.140";
|
|
34
|
+
readonly '@cloudscape-design/components': "3.0.1173";
|
|
34
35
|
readonly '@cloudscape-design/global-styles': "1.0.49";
|
|
35
|
-
readonly '@tanstack/react-query': "5.90.
|
|
36
|
-
readonly '@tanstack/react-query-devtools': "5.91.
|
|
37
|
-
readonly '@trpc/tanstack-react-query': "11.
|
|
38
|
-
readonly '@trpc/client': "11.
|
|
39
|
-
readonly '@trpc/server': "11.
|
|
40
|
-
readonly '@types/node': "22.19.
|
|
36
|
+
readonly '@tanstack/react-query': "5.90.16";
|
|
37
|
+
readonly '@tanstack/react-query-devtools': "5.91.2";
|
|
38
|
+
readonly '@trpc/tanstack-react-query': "11.8.1";
|
|
39
|
+
readonly '@trpc/client': "11.8.1";
|
|
40
|
+
readonly '@trpc/server': "11.8.1";
|
|
41
|
+
readonly '@types/node': "22.19.6";
|
|
41
42
|
readonly '@types/aws-lambda': "8.10.159";
|
|
42
43
|
readonly '@types/cors': "2.8.19";
|
|
43
|
-
readonly '@types/
|
|
44
|
-
readonly '@
|
|
44
|
+
readonly '@types/ws': "8.18.1";
|
|
45
|
+
readonly '@types/express': "5.0.6";
|
|
46
|
+
readonly '@smithy/types': "4.12.0";
|
|
45
47
|
readonly aws4fetch: "1.0.20";
|
|
46
|
-
readonly 'aws-cdk': "2.
|
|
47
|
-
readonly 'aws-cdk-lib': "2.
|
|
48
|
-
readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.
|
|
48
|
+
readonly 'aws-cdk': "2.1100.3";
|
|
49
|
+
readonly 'aws-cdk-lib': "2.234.1";
|
|
50
|
+
readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.233.0-alpha.0";
|
|
49
51
|
readonly 'aws-xray-sdk-core': "3.12.0";
|
|
50
|
-
readonly constructs: "10.4.
|
|
52
|
+
readonly constructs: "10.4.4";
|
|
51
53
|
readonly cors: "2.8.5";
|
|
52
|
-
readonly electrodb: "3.5.
|
|
53
|
-
readonly esbuild: "0.27.
|
|
54
|
+
readonly electrodb: "3.5.3";
|
|
55
|
+
readonly esbuild: "0.27.2";
|
|
54
56
|
readonly 'eslint-plugin-prettier': "5.5.4";
|
|
55
|
-
readonly express: "5.1
|
|
56
|
-
readonly 'jsonc-eslint-parser': "2.4.
|
|
57
|
+
readonly express: "5.2.1";
|
|
58
|
+
readonly 'jsonc-eslint-parser': "2.4.2";
|
|
57
59
|
readonly 'make-dir-cli': "4.0.0";
|
|
58
60
|
readonly ncp: "2.0.0";
|
|
59
|
-
readonly 'npm-check-updates': "19.1
|
|
61
|
+
readonly 'npm-check-updates': "19.3.1";
|
|
60
62
|
readonly 'oidc-client-ts': "3.4.1";
|
|
61
|
-
readonly prettier: "3.
|
|
63
|
+
readonly prettier: "3.7.4";
|
|
62
64
|
readonly 'react-oidc-context': "3.3.0";
|
|
63
|
-
readonly react: "19.2.
|
|
64
|
-
readonly 'react-dom': "19.2.
|
|
65
|
+
readonly react: "19.2.3";
|
|
66
|
+
readonly 'react-dom': "19.2.3";
|
|
65
67
|
readonly rimraf: "6.1.2";
|
|
66
68
|
readonly rolldown: "1.0.0-beta.52";
|
|
67
69
|
readonly 'source-map-support': "0.5.21";
|
|
68
|
-
readonly tailwindcss: "4.1.
|
|
69
|
-
readonly '@tailwindcss/vite': "4.1.
|
|
70
|
-
readonly tsx: "4.
|
|
70
|
+
readonly tailwindcss: "4.1.18";
|
|
71
|
+
readonly '@tailwindcss/vite': "4.1.18";
|
|
72
|
+
readonly tsx: "4.21.0";
|
|
71
73
|
readonly 'vite-tsconfig-paths': "5.1.4";
|
|
72
|
-
readonly zod: "4.
|
|
74
|
+
readonly zod: "4.3.5";
|
|
75
|
+
readonly ws: "8.19.0";
|
|
73
76
|
};
|
|
74
77
|
export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
75
78
|
/**
|
|
76
79
|
* Add versions to the given dependencies
|
|
77
80
|
*/
|
|
78
81
|
export declare const withVersions: (deps: ITsDepVersion[]) => {
|
|
79
|
-
[k: string]: "3.
|
|
82
|
+
[k: string]: "3.968.0" | "1.0.0-alpha.10" | "2.30.2" | "6.4.5" | "21.2.3" | "9.0.1" | "22.3.3" | "1.25.2" | "0.18.0" | "0.1.5" | "1.149.3" | "1.145.4" | "1.143.11" | "3.0.140" | "3.0.1173" | "1.0.49" | "5.90.16" | "5.91.2" | "11.8.1" | "22.19.6" | "8.10.159" | "2.8.19" | "8.18.1" | "5.0.6" | "4.12.0" | "1.0.20" | "2.1100.3" | "2.234.1" | "2.233.0-alpha.0" | "3.12.0" | "10.4.4" | "2.8.5" | "3.5.3" | "0.27.2" | "5.5.4" | "5.2.1" | "2.4.2" | "4.0.0" | "2.0.0" | "19.3.1" | "3.4.1" | "3.7.4" | "3.3.0" | "19.2.3" | "6.1.2" | "1.0.0-beta.52" | "0.5.21" | "4.1.18" | "4.21.0" | "5.1.4" | "4.3.5" | "8.19.0";
|
|
80
83
|
};
|
|
81
84
|
/**
|
|
82
85
|
* Versions for Python dependencies added by generators
|
|
83
86
|
*/
|
|
84
87
|
export declare const PY_VERSIONS: {
|
|
85
|
-
readonly 'aws-lambda-powertools': "==3.
|
|
86
|
-
readonly 'aws-lambda-powertools[tracer]': "==3.
|
|
87
|
-
readonly 'aws-lambda-powertools[parser]': "==3.
|
|
88
|
-
readonly 'aws-opentelemetry-distro': "==0.14.
|
|
88
|
+
readonly 'aws-lambda-powertools': "==3.24.0";
|
|
89
|
+
readonly 'aws-lambda-powertools[tracer]': "==3.24.0";
|
|
90
|
+
readonly 'aws-lambda-powertools[parser]': "==3.24.0";
|
|
91
|
+
readonly 'aws-opentelemetry-distro': "==0.14.1";
|
|
89
92
|
readonly 'bedrock-agentcore': "==0.1.7";
|
|
90
|
-
readonly boto3: "==1.42.
|
|
91
|
-
readonly checkov: "==3.2.
|
|
92
|
-
readonly fastapi: "==0.
|
|
93
|
-
readonly 'fastapi[standard]': "==0.
|
|
94
|
-
readonly mangum: "==0.
|
|
95
|
-
readonly mcp: "==1.
|
|
96
|
-
readonly 'pip-check-updates': "==0.
|
|
97
|
-
readonly 'strands-agents': "==1.
|
|
98
|
-
readonly 'strands-agents-tools': "==0.2.
|
|
99
|
-
readonly uvicorn: "==0.
|
|
93
|
+
readonly boto3: "==1.42.30";
|
|
94
|
+
readonly checkov: "==3.2.497";
|
|
95
|
+
readonly fastapi: "==0.128.0";
|
|
96
|
+
readonly 'fastapi[standard]': "==0.128.0";
|
|
97
|
+
readonly mangum: "==0.20.0";
|
|
98
|
+
readonly mcp: "==1.25.0";
|
|
99
|
+
readonly 'pip-check-updates': "==0.28.0";
|
|
100
|
+
readonly 'strands-agents': "==1.22.0";
|
|
101
|
+
readonly 'strands-agents-tools': "==0.2.19";
|
|
102
|
+
readonly uvicorn: "==0.40.0";
|
|
100
103
|
};
|
|
101
104
|
export type IPyDepVersion = keyof typeof PY_VERSIONS;
|
|
102
105
|
/**
|
package/src/utils/versions.js
CHANGED
|
@@ -9,70 +9,73 @@ exports.withPyVersions = exports.PY_VERSIONS = exports.withVersions = exports.TS
|
|
|
9
9
|
* Versons for TypeScript dependencies added by generators
|
|
10
10
|
*/
|
|
11
11
|
exports.TS_VERSIONS = {
|
|
12
|
-
'@aws-sdk/client-cognito-identity': '3.
|
|
13
|
-
'@aws-sdk/client-dynamodb': '3.
|
|
14
|
-
'@aws-sdk/credential-providers': '3.
|
|
15
|
-
'@aws-sdk/credential-provider-cognito-identity': '3.
|
|
12
|
+
'@aws-sdk/client-cognito-identity': '3.968.0',
|
|
13
|
+
'@aws-sdk/client-dynamodb': '3.968.0',
|
|
14
|
+
'@aws-sdk/credential-providers': '3.968.0',
|
|
15
|
+
'@aws-sdk/credential-provider-cognito-identity': '3.968.0',
|
|
16
16
|
'@aws-smithy/server-apigateway': '1.0.0-alpha.10',
|
|
17
17
|
'@aws-smithy/server-node': '1.0.0-alpha.10',
|
|
18
|
-
'@aws-lambda-powertools/logger': '2.
|
|
19
|
-
'@aws-lambda-powertools/metrics': '2.
|
|
20
|
-
'@aws-lambda-powertools/tracer': '2.
|
|
21
|
-
'@aws-lambda-powertools/parser': '2.
|
|
18
|
+
'@aws-lambda-powertools/logger': '2.30.2',
|
|
19
|
+
'@aws-lambda-powertools/metrics': '2.30.2',
|
|
20
|
+
'@aws-lambda-powertools/tracer': '2.30.2',
|
|
21
|
+
'@aws-lambda-powertools/parser': '2.30.2',
|
|
22
22
|
'@middy/core': '6.4.5',
|
|
23
|
-
'@nxlv/python': '21.2.
|
|
23
|
+
'@nxlv/python': '21.2.3',
|
|
24
24
|
'@nx-extend/terraform': '9.0.1',
|
|
25
|
-
'@nx/devkit': '22.
|
|
26
|
-
'@nx/react': '22.
|
|
27
|
-
'create-nx-workspace': '22.
|
|
28
|
-
'@modelcontextprotocol/sdk': '1.25.
|
|
25
|
+
'@nx/devkit': '22.3.3',
|
|
26
|
+
'@nx/react': '22.3.3',
|
|
27
|
+
'create-nx-workspace': '22.3.3',
|
|
28
|
+
'@modelcontextprotocol/sdk': '1.25.2',
|
|
29
29
|
'@modelcontextprotocol/inspector': '0.18.0',
|
|
30
|
-
'@
|
|
31
|
-
'@tanstack/router
|
|
32
|
-
'@tanstack/router-
|
|
33
|
-
'@tanstack/
|
|
34
|
-
'@tanstack/
|
|
35
|
-
'@
|
|
36
|
-
'@cloudscape-design/components': '3.0.
|
|
30
|
+
'@strands-agents/sdk': '0.1.5',
|
|
31
|
+
'@tanstack/react-router': '1.149.3',
|
|
32
|
+
'@tanstack/router-plugin': '1.149.3',
|
|
33
|
+
'@tanstack/router-generator': '1.149.3',
|
|
34
|
+
'@tanstack/virtual-file-routes': '1.145.4',
|
|
35
|
+
'@tanstack/router-utils': '1.143.11',
|
|
36
|
+
'@cloudscape-design/board-components': '3.0.140',
|
|
37
|
+
'@cloudscape-design/components': '3.0.1173',
|
|
37
38
|
'@cloudscape-design/global-styles': '1.0.49',
|
|
38
|
-
'@tanstack/react-query': '5.90.
|
|
39
|
-
'@tanstack/react-query-devtools': '5.91.
|
|
40
|
-
'@trpc/tanstack-react-query': '11.
|
|
41
|
-
'@trpc/client': '11.
|
|
42
|
-
'@trpc/server': '11.
|
|
43
|
-
'@types/node': '22.19.
|
|
39
|
+
'@tanstack/react-query': '5.90.16',
|
|
40
|
+
'@tanstack/react-query-devtools': '5.91.2',
|
|
41
|
+
'@trpc/tanstack-react-query': '11.8.1',
|
|
42
|
+
'@trpc/client': '11.8.1',
|
|
43
|
+
'@trpc/server': '11.8.1',
|
|
44
|
+
'@types/node': '22.19.6',
|
|
44
45
|
'@types/aws-lambda': '8.10.159',
|
|
45
46
|
'@types/cors': '2.8.19',
|
|
46
|
-
'@types/
|
|
47
|
-
'@
|
|
47
|
+
'@types/ws': '8.18.1',
|
|
48
|
+
'@types/express': '5.0.6',
|
|
49
|
+
'@smithy/types': '4.12.0',
|
|
48
50
|
aws4fetch: '1.0.20',
|
|
49
|
-
'aws-cdk': '2.
|
|
50
|
-
'aws-cdk-lib': '2.
|
|
51
|
-
'@aws-cdk/aws-bedrock-agentcore-alpha': '2.
|
|
51
|
+
'aws-cdk': '2.1100.3',
|
|
52
|
+
'aws-cdk-lib': '2.234.1',
|
|
53
|
+
'@aws-cdk/aws-bedrock-agentcore-alpha': '2.233.0-alpha.0',
|
|
52
54
|
'aws-xray-sdk-core': '3.12.0',
|
|
53
|
-
constructs: '10.4.
|
|
55
|
+
constructs: '10.4.4',
|
|
54
56
|
cors: '2.8.5',
|
|
55
|
-
electrodb: '3.5.
|
|
56
|
-
esbuild: '0.27.
|
|
57
|
+
electrodb: '3.5.3',
|
|
58
|
+
esbuild: '0.27.2',
|
|
57
59
|
'eslint-plugin-prettier': '5.5.4',
|
|
58
|
-
express: '5.1
|
|
59
|
-
'jsonc-eslint-parser': '2.4.
|
|
60
|
+
express: '5.2.1',
|
|
61
|
+
'jsonc-eslint-parser': '2.4.2',
|
|
60
62
|
'make-dir-cli': '4.0.0',
|
|
61
63
|
ncp: '2.0.0',
|
|
62
|
-
'npm-check-updates': '19.1
|
|
64
|
+
'npm-check-updates': '19.3.1',
|
|
63
65
|
'oidc-client-ts': '3.4.1',
|
|
64
|
-
prettier: '3.
|
|
66
|
+
prettier: '3.7.4',
|
|
65
67
|
'react-oidc-context': '3.3.0',
|
|
66
|
-
react: '19.2.
|
|
67
|
-
'react-dom': '19.2.
|
|
68
|
+
react: '19.2.3',
|
|
69
|
+
'react-dom': '19.2.3',
|
|
68
70
|
rimraf: '6.1.2',
|
|
69
71
|
rolldown: '1.0.0-beta.52',
|
|
70
72
|
'source-map-support': '0.5.21',
|
|
71
|
-
tailwindcss: '4.1.
|
|
72
|
-
'@tailwindcss/vite': '4.1.
|
|
73
|
-
tsx: '4.
|
|
73
|
+
tailwindcss: '4.1.18',
|
|
74
|
+
'@tailwindcss/vite': '4.1.18',
|
|
75
|
+
tsx: '4.21.0',
|
|
74
76
|
'vite-tsconfig-paths': '5.1.4',
|
|
75
|
-
zod: '4.
|
|
77
|
+
zod: '4.3.5',
|
|
78
|
+
ws: '8.19.0',
|
|
76
79
|
};
|
|
77
80
|
/**
|
|
78
81
|
* Add versions to the given dependencies
|
|
@@ -83,21 +86,21 @@ exports.withVersions = withVersions;
|
|
|
83
86
|
* Versions for Python dependencies added by generators
|
|
84
87
|
*/
|
|
85
88
|
exports.PY_VERSIONS = {
|
|
86
|
-
'aws-lambda-powertools': '==3.
|
|
87
|
-
'aws-lambda-powertools[tracer]': '==3.
|
|
88
|
-
'aws-lambda-powertools[parser]': '==3.
|
|
89
|
-
'aws-opentelemetry-distro': '==0.14.
|
|
89
|
+
'aws-lambda-powertools': '==3.24.0',
|
|
90
|
+
'aws-lambda-powertools[tracer]': '==3.24.0',
|
|
91
|
+
'aws-lambda-powertools[parser]': '==3.24.0',
|
|
92
|
+
'aws-opentelemetry-distro': '==0.14.1',
|
|
90
93
|
'bedrock-agentcore': '==0.1.7',
|
|
91
|
-
boto3: '==1.42.
|
|
92
|
-
checkov: '==3.2.
|
|
93
|
-
fastapi: '==0.
|
|
94
|
-
'fastapi[standard]': '==0.
|
|
95
|
-
mangum: '==0.
|
|
96
|
-
mcp: '==1.
|
|
97
|
-
'pip-check-updates': '==0.
|
|
98
|
-
'strands-agents': '==1.
|
|
99
|
-
'strands-agents-tools': '==0.2.
|
|
100
|
-
uvicorn: '==0.
|
|
94
|
+
boto3: '==1.42.30',
|
|
95
|
+
checkov: '==3.2.497',
|
|
96
|
+
fastapi: '==0.128.0',
|
|
97
|
+
'fastapi[standard]': '==0.128.0',
|
|
98
|
+
mangum: '==0.20.0',
|
|
99
|
+
mcp: '==1.25.0',
|
|
100
|
+
'pip-check-updates': '==0.28.0',
|
|
101
|
+
'strands-agents': '==1.22.0',
|
|
102
|
+
'strands-agents-tools': '==0.2.19',
|
|
103
|
+
uvicorn: '==0.40.0',
|
|
101
104
|
};
|
|
102
105
|
/**
|
|
103
106
|
* Add versions to the given dependencies
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH;;GAEG;AACU,QAAA,WAAW,GAAG;IACzB,kCAAkC,EAAE,SAAS;IAC7C,0BAA0B,EAAE,SAAS;IACrC,+BAA+B,EAAE,SAAS;IAC1C,+CAA+C,EAAE,SAAS;IAC1D,+BAA+B,EAAE,gBAAgB;IACjD,yBAAyB,EAAE,gBAAgB;IAC3C,+BAA+B,EAAE,QAAQ;IACzC,gCAAgC,EAAE,QAAQ;IAC1C,+BAA+B,EAAE,QAAQ;IACzC,+BAA+B,EAAE,QAAQ;IACzC,aAAa,EAAE,OAAO;IACtB,cAAc,EAAE,QAAQ;IACxB,sBAAsB,EAAE,OAAO;IAC/B,YAAY,EAAE,QAAQ;IACtB,WAAW,EAAE,QAAQ;IACrB,qBAAqB,EAAE,QAAQ;IAC/B,2BAA2B,EAAE,QAAQ;IACrC,iCAAiC,EAAE,QAAQ;IAC3C,wBAAwB,EAAE,SAAS;IACnC,yBAAyB,EAAE,SAAS;IACpC,4BAA4B,EAAE,SAAS;IACvC,+BAA+B,EAAE,SAAS;IAC1C,wBAAwB,EAAE,
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
|