Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

For Client SDK code generation, the `typescript-client-codegen` plugin provides a framework for generating extensible TypeScript clients that can support multiple JavaScript platforms, including Node.js, Browser, and React-Native. See [the section on generating a client to see how to get started](#generating-a-client), or [the `typescript-client-codegen` documentation](#client-sdk-code-generation-typescript-client-codegen-plugin).

> Note: Node.js support includes versions >= 16, and is subject to change.
> Note: Node.js support includes versions >= 18, and is subject to change.

For Server SDK code generation, the `typescript-server-codegen` plugin provides a framework for generating server scaffolding at a higher level of abstraction and with type safety. More documentation can be found at in [the `typescript-server-codegen` documentation](#server-sdk-code-generation-typescript-server-codegen-plugin), or [smithy.io](https://smithy.io/2.0/ts-ssdk/index.html).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public enum TypeScriptDependency implements Dependency {
AWS_SMITHY_CLIENT("dependencies", "@smithy/smithy-client", true),
INVALID_DEPENDENCY("dependencies", "@smithy/invalid-dependency", true),
CONFIG_RESOLVER("dependencies", "@smithy/config-resolver", true),
TYPES_NODE("devDependencies", "@types/node", "^16.18.96", true),
TYPES_NODE("devDependencies", "@types/node", "^18.11.9", true),

MIDDLEWARE_CONTENT_LENGTH("dependencies", "@smithy/middleware-content-length", true),
MIDDLEWARE_SERDE("dependencies", "@smithy/middleware-serde", true),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"typescript": "~4.9.5"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"typesVersions": {
"<4.0": {
Expand Down
Loading