diff --git a/.changeset/cyan-parrots-help.md b/.changeset/cyan-parrots-help.md new file mode 100644 index 00000000000..a845151cc84 --- /dev/null +++ b/.changeset/cyan-parrots-help.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/.gitignore b/.gitignore index eebad88db79..ef2c09e650c 100644 --- a/.gitignore +++ b/.gitignore @@ -34,7 +34,7 @@ smithy-typescript-integ-tests/dist smithy-typescript-integ-tests/node_modules smithy-typescript-integ-tests/yarn.lock -# Issue https://github.com/awslabs/smithy-typescript/issues/425 +# Issue https://github.com/smithy-lang/smithy-typescript/issues/425 smithy-typescript-codegen/bin/ smithy-typescript-codegen-test/bin/ smithy-typescript-ssdk-codegen-test-utils/bin/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0e9dc6ab26b..61acef3184e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,6 +7,7 @@ Please read through this document before submitting any issues or pull requests information to effectively respond to your bug report or contribution. ## Gradle Composite Build + The `smithy-typescript` repository uses Gradle as a build tool and has Gradle based dependencies such as `smithy`. To improve development experience when making changes to the dependencies locally, we can use the [Gradle composite build feature](https://docs.gradle.org/current/userguide/composite_builds.html), @@ -28,27 +29,27 @@ of code generation packages and TypeScript packages. These features are enabled behavior via feature flags as to not break any existing customers. Here are the experimental features that are currently under development: -Experimental Feature | Flag | Description ----------------------|-------------------------------|------------ -N/A | N/A | N/A +| Experimental Feature | Flag | Description | +| -------------------- | ---- | ----------- | +| N/A | N/A | N/A | ## Reporting Bugs/Feature Requests We welcome you to use the GitHub issue tracker to report bugs or suggest features. -When filing an issue, please check [existing open](https://github.com/awslabs/smithy-typescript/issues), or [recently closed](https://github.com/awslabs/smithy-typescript/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already +When filing an issue, please check [existing open](https://github.com/smithy-lang/smithy-typescript/issues), or [recently closed](https://github.com/smithy-lang/smithy-typescript/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can. Details like these are incredibly useful: -* A reproducible test case or series of steps -* The version of our code being used -* Any modifications you've made relevant to the bug -* Anything unusual about your environment or deployment - +- A reproducible test case or series of steps +- The version of our code being used +- Any modifications you've made relevant to the bug +- Anything unusual about your environment or deployment ## Contributing via Pull Requests + Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that: -1. You are working against the latest source on the *main* branch. +1. You are working against the latest source on the _main_ branch. 2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already. 3. You open an issue to discuss any significant work - we would hate for your time to be wasted. @@ -78,33 +79,34 @@ Any changes made to the `smithy-typescript-codegen` package need to be compatibl MUST ensure that code generation is kept in sync between the two repositories by creating an equivalent PR in aws-sdk-js-v3. Procedure to keep code generation in sync while making changes to `smithy-typescript-codegen`: + 1. Fork and clone [aws/aws-sdk-js-v3][aws-sdk-js-v3]. 2. Run `yarn` to install dependencies. 3. Run `generate-clients` with `HEAD` commit as follows: - ```sh - yarn generate-clients --commit HEAD - ``` + ```sh + yarn generate-clients --commit HEAD + ``` 4. If the clients are updated, post a pull request on aws-sdk-js-v3. If the clients are not updated, no further action is needed. 5. When PR on smithy-typescript is merged, rebase the PR on aws-sdk-js-v3 and add merged commit as default. ## Finding contributions to work on -Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/smithy-typescript/labels/help%20wanted) issues is a great place to start. +Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/smithy-lang/smithy-typescript/labels/help%20wanted) issues is a great place to start. ## Code of Conduct + This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact opensource-codeofconduct@amazon.com with any additional questions or comments. - ## Security issue notifications -If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue. +If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue. ## Licensing -See the [LICENSE](https://github.com/awslabs/smithy-typescript/blob/main/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution. +See the [LICENSE](https://github.com/smithy-lang/smithy-typescript/blob/main/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution. We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes. -[aws-sdk-js-v3]: https://github.com/aws/aws-sdk-js-v3 \ No newline at end of file +[aws-sdk-js-v3]: https://github.com/aws/aws-sdk-js-v3 diff --git a/README.md b/README.md index ae8dd8c4965..beafd2b837a 100644 --- a/README.md +++ b/README.md @@ -42,22 +42,20 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith ```json // smithy-build.json { - "version": "1.0", - "sources": ["models"], - // Add the Smithy TypeScript code generator dependency - "maven": { - "dependencies": [ - "software.amazon.smithy.typescript:smithy-typescript-codegen:0.27.0" - ] - }, - "plugins": { - // Add the Smithy TypeScript client plugin - "typescript-client-codegen": { - // Minimal configuration: add package name and version - "package": "@smithy/typescript-example-client", - "packageVersion": "0.0.1" - } + "version": "1.0", + "sources": ["models"], + // Add the Smithy TypeScript code generator dependency + "maven": { + "dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.27.0"] + }, + "plugins": { + // Add the Smithy TypeScript client plugin + "typescript-client-codegen": { + // Minimal configuration: add package name and version + "package": "@smithy/typescript-example-client", + "packageVersion": "0.0.1" } + } } ``` @@ -107,16 +105,16 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith ```json // smithy-build.json { - "version": "1.0", - "sources": ["models"], - "plugins": { - // Add the Smithy TypeScript client plugin - "typescript-client-codegen": { - // Minimal configuration: add package name and version - "package": "@smithy/typescript-example-client", - "packageVersion": "0.0.1" - } + "version": "1.0", + "sources": ["models"], + "plugins": { + // Add the Smithy TypeScript client plugin + "typescript-client-codegen": { + // Minimal configuration: add package name and version + "package": "@smithy/typescript-example-client", + "packageVersion": "0.0.1" } + } } ``` @@ -185,32 +183,30 @@ By default, the Smithy TypeScript code generators provide the code generation fr [`TypeScriptSettings`](smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/TypeScriptSettings.java) contains all of the settings enabled from `smithy-build.json` and helper methods and types. The up-to-date list of top-level properties enabled for `typescript-client-codegen` can be found in `TypeScriptSettings.ArtifactType.CLIENT`. -| Setting |Required| Description | -|---------------------------|---|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `package` |Yes| Name of the package in `package.json`. | -| `packageVersion` |Yes| Version of the package in `package.json`. | -| `packageDescription` |No| Description of the package in `package.json`. The default value is `${package} client` | -| `packageJson` |No| Custom `package.json` properties that will be merged with the base `package.json`. The default value is an empty object. | -| `packageManager` |No| Configured package manager for the package. The default value is `yarn`. | -| `service` |No| The Shape ID of the service to generate a client for. If not provided, the code generator will attempt to infer the service Shape ID. If there is exactly 1 service found in the model, then the service is used as the inferred Shape ID. If no services are found, then code generation fails. If more than 1 service is found, then code generation fails. | -| `protocol` |No| The Shape ID of the protocol used to generate serialization and deserialization. If not provided, the code generator will attempt to resolve the highest priority service protocol supported in code generation (registered through `TypeScriptIntegration`). If no protocols are found, code generation will use serialization and deserialization error stubs. | -| `private` |No| Whether the package is `private` in `package.json`. The default value is `false`. | -| `requiredMemberMode` |No| **NOT RECOMMENDED DUE TO BACKWARD COMPATIBILITY CONCERNS.** Sets whether members marked with the `@required` trait are allowed to be `undefined`. See more details on the risks in `TypeScriptSettings.RequiredMemberMode`. The default value is `nullable`. | -| `createDefaultReadme` |No| Whether to generate a default `README.md` for the package. The default value is `false`. | -| `useLegacyAuth` |No| **NOT RECOMMENDED, AVAILABLE ONLY FOR BACKWARD COMPATIBILITY CONCERNS.** Flag that enables using legacy auth. When in doubt, use the default identity and auth behavior (not configuring `useLegacyAuth`) as the golden path. | -| `serviceProtocolPriority` |No| Map of service `ShapeId` strings to lists of protocol `ShapeId` strings. Used to override protocol selection behavior. | -| `defaultProtocolPriority` |No| List of protocol `ShapeId` strings. Lower precedence than `serviceProtocolPriority` but applies to all services. | +| Setting | Required | Description | +| ------------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `package` | Yes | Name of the package in `package.json`. | +| `packageVersion` | Yes | Version of the package in `package.json`. | +| `packageDescription` | No | Description of the package in `package.json`. The default value is `${package} client` | +| `packageJson` | No | Custom `package.json` properties that will be merged with the base `package.json`. The default value is an empty object. | +| `packageManager` | No | Configured package manager for the package. The default value is `yarn`. | +| `service` | No | The Shape ID of the service to generate a client for. If not provided, the code generator will attempt to infer the service Shape ID. If there is exactly 1 service found in the model, then the service is used as the inferred Shape ID. If no services are found, then code generation fails. If more than 1 service is found, then code generation fails. | +| `protocol` | No | The Shape ID of the protocol used to generate serialization and deserialization. If not provided, the code generator will attempt to resolve the highest priority service protocol supported in code generation (registered through `TypeScriptIntegration`). If no protocols are found, code generation will use serialization and deserialization error stubs. | +| `private` | No | Whether the package is `private` in `package.json`. The default value is `false`. | +| `requiredMemberMode` | No | **NOT RECOMMENDED DUE TO BACKWARD COMPATIBILITY CONCERNS.** Sets whether members marked with the `@required` trait are allowed to be `undefined`. See more details on the risks in `TypeScriptSettings.RequiredMemberMode`. The default value is `nullable`. | +| `createDefaultReadme` | No | Whether to generate a default `README.md` for the package. The default value is `false`. | +| `useLegacyAuth` | No | **NOT RECOMMENDED, AVAILABLE ONLY FOR BACKWARD COMPATIBILITY CONCERNS.** Flag that enables using legacy auth. When in doubt, use the default identity and auth behavior (not configuring `useLegacyAuth`) as the golden path. | +| `serviceProtocolPriority` | No | Map of service `ShapeId` strings to lists of protocol `ShapeId` strings. Used to override protocol selection behavior. | +| `defaultProtocolPriority` | No | List of protocol `ShapeId` strings. Lower precedence than `serviceProtocolPriority` but applies to all services. | #### `typescript-client-codegen` plugin artifacts Smithy TypeScript clients are extensible (see [the AWS blog post on the middleware stack](https://aws.amazon.com/blogs/developer/middleware-stack-modular-aws-sdk-js/)), robust, and support multiple JavaScript platforms. The main components of a client are the following (`$SERVICE` is the name of a Smithy service, `$OPERATION` is the name of a Smithy operation, `$N` is a number starting from 0): - Client classes: A standalone tree-shakeable client defined in `src/$SERVICEClient.ts` and an aggregated client defined in `src/$SERVICE.ts`. The client classes are the entry point to calling a service, defining the input configuration of the service and adding any service-level middleware. + ```typescript - import { - $SERVICEClient, - $SERVICE - } from "..."; // example client package + import { $SERVICEClient, $SERVICE } from "..."; // example client package const individualClient = new $SERVICEClient({ // Input configuration with type hints @@ -220,31 +216,28 @@ Smithy TypeScript clients are extensible (see [the AWS blog post on the middlewa // Input configuration with type hints }); ``` + - Command classes: Individual commands defined in `src/commands/$OPERATIONCommand.ts`. These classes include operation-level middleware and additional values to the client resolved configuration through the middleware context. + ```typescript - import { - $SERVICEClient, - $OPERATIONCommand, - $OPERATIONCommandOutput - } from "..."; // example client package + import { $SERVICEClient, $OPERATIONCommand, $OPERATIONCommandOutput } from "..."; // example client package const individualClient = new $SERVICEClient({ // Input configuration with type hints }); - const response: Promise<$OPERATIONCommandOutput> = individualClient.send(new $OPERATIONCommand({ - // Operation input with type hints - // Operations can also be called callback style or with HandlerOptions - })); + const response: Promise<$OPERATIONCommandOutput> = individualClient.send( + new $OPERATIONCommand({ + // Operation input with type hints + // Operations can also be called callback style or with HandlerOptions + }) + ); ``` + - Models: Types and interfaces exported from `models/index.ts`, found individually in `models/model_$N.ts`, and errors including a base `$SERVICEServicexception.ts`. + ```typescript - import { - $SERVICEClient, - $SERVICEServiceException, - $OPERATIONCommand, - $OPERATIONCommandOutput - } from "..."; // example client package + import { $SERVICEClient, $SERVICEServiceException, $OPERATIONCommand, $OPERATIONCommandOutput } from "..."; // example client package const individualClient = new $SERVICEClient({ // Input configuration with type hints @@ -261,7 +254,9 @@ Smithy TypeScript clients are extensible (see [the AWS blog post on the middlewa throw error; } ``` + - Runtime Configurations: Populated default values for a client input configuration for different platforms, currently supporting Node.js, Browser, and React-Native. All of these have a shared runtime configuration that is overwritten with more specific platform values. Not every client input configuration needs a default value, but it is best practice to provide a reasonable default. For example, the `extensions` property defaults to an empty array when no runtime extensions are specified. + ```text Least-specific @@ -279,6 +274,7 @@ Smithy TypeScript clients are extensible (see [the AWS blog post on the middlewa Most-specific (overrides values from parent) ``` + - Runtime Extensions: Interfaces to implement extensions enabling alternative default values to the runtime configuration. See [the section on customizing TypeScript Client Configuration for more details](#typescript-client-configuration). - Package Configuration files: `package.json` and TypeScript configuration files for different platforms. @@ -315,7 +311,7 @@ Smithy TypeScript provides default code generation implementations for generatin For Smithy TypeScript clients, the main implementations not provided are [protocol generators](#protocol-generator-implementations) and [handling endpoint resolution](#handling-endpoint-resolution) (see [the TypeScript code generation section](#typescript-code-generation)). -> If there are items missing from this section, feel free to [create an issue](https://github.com/awslabs/smithy-typescript/issues/new). +> If there are items missing from this section, feel free to [create an issue](https://github.com/smithy-lang/smithy-typescript/issues/new). ##### Protocol generator implementations @@ -324,6 +320,7 @@ Protocols define how operation inputs and outputs are serialized and deserialize Once a `ProtocolGenerator` is implemented, the implementation can be registered through a `TypeScriptIntegration`: - `TypeScriptIntegration` with `ProtocolGenerator` implementation: + ```java // src/main/java/typescript/example/client/gradle/ExampleClientProtocolGeneratorIntegration.java package typescript.example.client.gradle; @@ -348,6 +345,7 @@ Once a `ProtocolGenerator` is implemented, the implementation can be registered } } ``` + - Registering the `TypeScriptIntegration`: ```java // src/main/resources/META-INF/services/software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration @@ -365,6 +363,7 @@ Endpoint resolution is not implemented by default due to the inherent complexity Smithy TypeScript has the `CustomEndpoints` configuration which can be used to add the `endpoint` property to the client configuration, and the `TypeScriptIntegration::getRuntimeConfigWriters()` method can be used to provide a default endpoint: - `TypeScriptIntegration` implementation: + ```java // src/main/java/typescript/example/client/gradle/ExampleClientEndpointResolutionIntegration.java package typescript.example.client.gradle; @@ -403,6 +402,7 @@ Smithy TypeScript has the `CustomEndpoints` configuration which can be used to a } } ``` + - Registering the `TypeScriptIntegration`: ```java // src/main/resources/META-INF/services/software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration @@ -412,9 +412,7 @@ Smithy TypeScript has the `CustomEndpoints` configuration which can be used to a Customers can then pass in an endpoint to the client configuration: ```typescript -import { - $SERVICEClient, -} from "..."; // example client package +import { $SERVICEClient } from "..."; // example client package // Without providing the endpoint, a "No valid endpoint provider available." error will be thrown const individualClient = new $SERVICEClient({ @@ -441,19 +439,19 @@ For documentation of `typescript-server-codegen` artifacts and implementation, s [`TypeScriptSettings`](smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/TypeScriptSettings.java) contains all of the settings enabled from `smithy-build.json` and helper methods and types. The up-to-date list of top-level properties enabled for `typescript-server-codegen` can be found in `TypeScriptSettings.ArtifactType.SSDK`. -|Setting|Required|Description| -|---|---|---| -|`package`|Yes|Name of the package in `package.json`.| -|`packageVersion`|Yes|Version of the package in `package.json`.| -|`packageDescription`|No|Description of the package in `package.json`. The default value is `${package} server`.| -|`packageJson`|No|Custom `package.json`properties that will be merged with the base `package.json`. The default value is an empty object.| -|`packageManager`|No|Configured package manager for the package. The default value is `yarn`.| -|`service`|No|The Shape ID of the service to generate a client for. If not provided, the code generator will attempt to infer the service Shape ID. If there is exactly 1 service found in the model, then the service is used as the inferred Shape ID. If no services are found, then code generation fails. If more than 1 service is found, then code generation fails.| -|`protocol`|No|The Shape ID of the protocol used to generate serialization and deserialization. If not provided, the code generator will attempt to resolve the highest priority service protocol supported in code generation (registered through `TypeScriptIntegration`). If no protocols are found, code generation will use serialization and deserialization error stubs.| -|`private`|No|Whether the package is `private` in `package.json`. The default value is `false`.| -|`requiredMemberMode`|No|**NOT RECOMMENDED DUE TO BACKWARD COMPATIBILITY CONCERNS.** Sets whether members marked with the `@required` trait are allowed to be `undefined`. See more details on the risks in `TypeScriptSettings.RequiredMemberMode`. The default value is `nullable`.| -|`createDefaultReadme`|No|Whether to generate a default `README.md` for the package. The default value is `false`.| -|`disableDefaultValidation`|No|Whether or not default validation is disabled. See [the documentation for Smithy TypeScript SSDK validation](https://smithy.io/2.0/ts-ssdk/validation.html) to learn more. The default value is `false`.| +| Setting | Required | Description | +| -------------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `package` | Yes | Name of the package in `package.json`. | +| `packageVersion` | Yes | Version of the package in `package.json`. | +| `packageDescription` | No | Description of the package in `package.json`. The default value is `${package} server`. | +| `packageJson` | No | Custom `package.json`properties that will be merged with the base `package.json`. The default value is an empty object. | +| `packageManager` | No | Configured package manager for the package. The default value is `yarn`. | +| `service` | No | The Shape ID of the service to generate a client for. If not provided, the code generator will attempt to infer the service Shape ID. If there is exactly 1 service found in the model, then the service is used as the inferred Shape ID. If no services are found, then code generation fails. If more than 1 service is found, then code generation fails. | +| `protocol` | No | The Shape ID of the protocol used to generate serialization and deserialization. If not provided, the code generator will attempt to resolve the highest priority service protocol supported in code generation (registered through `TypeScriptIntegration`). If no protocols are found, code generation will use serialization and deserialization error stubs. | +| `private` | No | Whether the package is `private` in `package.json`. The default value is `false`. | +| `requiredMemberMode` | No | **NOT RECOMMENDED DUE TO BACKWARD COMPATIBILITY CONCERNS.** Sets whether members marked with the `@required` trait are allowed to be `undefined`. See more details on the risks in `TypeScriptSettings.RequiredMemberMode`. The default value is `nullable`. | +| `createDefaultReadme` | No | Whether to generate a default `README.md` for the package. The default value is `false`. | +| `disableDefaultValidation` | No | Whether or not default validation is disabled. See [the documentation for Smithy TypeScript SSDK validation](https://smithy.io/2.0/ts-ssdk/validation.html) to learn more. The default value is `false`. | ### Adding customizations to Smithy TypeScript @@ -504,7 +502,7 @@ Once the Java libary is built, the library can be [consumed as a third-party pac The easiest way to see how the individual methods on `TypeScriptIntegration` (and by extension `SmithyIntegration`) are used in the code generation process is by searching by usage at a given Smithy TypeScript version, as method usages are subject to change. -> Note: if an existing integration point does not exist on `TypeScriptIntegration` or `SmithyIntegration`, check if [the `RuntimeClientPlugin` abstraction](smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/RuntimeClientPlugin.java) has an integration point. If not, [create a feature request](https://github.com/awslabs/smithy-typescript/issues/new) with the incompatible use case. +> Note: if an existing integration point does not exist on `TypeScriptIntegration` or `SmithyIntegration`, check if [the `RuntimeClientPlugin` abstraction](smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/RuntimeClientPlugin.java) has an integration point. If not, [create a feature request](https://github.com/smithy-lang/smithy-typescript/issues/new) with the incompatible use case. > Note: Although the `TypeScriptIntegration` interface is maintained with backward compatibility in mind, the interface may be subject to breaking changes as it is annotated with `@SmithyUnstableApi`. Methods may also have additional individual annotations that should be noted (e.g. `@SmithyInternalApi`). @@ -582,7 +580,7 @@ Then, update the `gradle.properties` property `smithyVersion` in the Smithy Type If using local Smithy TypeScript changes, build the `software.amazon.smithy.typescript.*` packages and publish them to a Maven Local Repository: ```shell -git clone https://github.com/awslabs/smithy-typescript.git +git clone https://github.com/smithy-lang/smithy-typescript.git cd smithy-typescript # Make intended changes, e.g. bumping the codegen artifact version ./gradlew publishToMavenLocal @@ -632,4 +630,3 @@ Many Gradle issues can be fixed by stopping the Gradle daemon by running `./grad ## License This library is licensed under the Apache 2.0 License. - diff --git a/package.json b/package.json index b7f9a2ec478..7f1989ee94c 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript/tree/main" + "url": "https://github.com/smithy-lang/smithy-typescript/tree/main" }, "author": "AWS Smithy Team", "license": "UNLICENSED", diff --git a/packages/abort-controller/package.json b/packages/abort-controller/package.json index 5c9e39251cb..02ee381b2a8 100644 --- a/packages/abort-controller/package.json +++ b/packages/abort-controller/package.json @@ -41,10 +41,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/abort-controller", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/abort-controller", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/abort-controller" }, "devDependencies": { diff --git a/packages/chunked-blob-reader-native/package.json b/packages/chunked-blob-reader-native/package.json index 58c5aaff65e..440be99e9a2 100644 --- a/packages/chunked-blob-reader-native/package.json +++ b/packages/chunked-blob-reader-native/package.json @@ -36,10 +36,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/chunked-blob-reader-native", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/chunked-blob-reader-native", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/chunked-blob-reader-native" }, "devDependencies": { diff --git a/packages/chunked-blob-reader/package.json b/packages/chunked-blob-reader/package.json index 414eb52a3af..e53db1cb5ee 100644 --- a/packages/chunked-blob-reader/package.json +++ b/packages/chunked-blob-reader/package.json @@ -35,10 +35,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/chunked-blob-reader", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/chunked-blob-reader", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/chunked-blob-reader" }, "devDependencies": { diff --git a/packages/config-resolver/package.json b/packages/config-resolver/package.json index 23028e78d95..9b595655dc8 100644 --- a/packages/config-resolver/package.json +++ b/packages/config-resolver/package.json @@ -49,10 +49,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/config-resolver", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/config-resolver", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/config-resolver" }, "typedoc": { diff --git a/packages/core/package.json b/packages/core/package.json index cd71e5add55..d8913352835 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -89,10 +89,10 @@ "./serde.js", "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/core", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/core", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/core" }, "devDependencies": { diff --git a/packages/credential-provider-imds/package.json b/packages/credential-provider-imds/package.json index a850ad6fbde..f3105be9334 100644 --- a/packages/credential-provider-imds/package.json +++ b/packages/credential-provider-imds/package.json @@ -54,10 +54,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/credential-provider-imds", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/credential-provider-imds", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/credential-provider-imds" }, "typedoc": { diff --git a/packages/eventstream-codec/package.json b/packages/eventstream-codec/package.json index 34b1e74c330..ea72e088d67 100644 --- a/packages/eventstream-codec/package.json +++ b/packages/eventstream-codec/package.json @@ -46,10 +46,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/eventstream-codec", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/eventstream-codec", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/eventstream-codec" }, "typedoc": { diff --git a/packages/eventstream-serde-browser/package.json b/packages/eventstream-serde-browser/package.json index c1cffc6aa67..84ac1c9b728 100644 --- a/packages/eventstream-serde-browser/package.json +++ b/packages/eventstream-serde-browser/package.json @@ -39,10 +39,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/eventstream-serde-browser", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/eventstream-serde-browser", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/eventstream-serde-browser" }, "devDependencies": { diff --git a/packages/eventstream-serde-config-resolver/package.json b/packages/eventstream-serde-config-resolver/package.json index ef2611813e7..fa94d25e322 100644 --- a/packages/eventstream-serde-config-resolver/package.json +++ b/packages/eventstream-serde-config-resolver/package.json @@ -40,10 +40,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/eventstream-serde-config-resolver", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/eventstream-serde-config-resolver", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/eventstream-serde-config-resolver" }, "devDependencies": { diff --git a/packages/eventstream-serde-node/package.json b/packages/eventstream-serde-node/package.json index 0dbcec06b79..61dfb7e91d7 100644 --- a/packages/eventstream-serde-node/package.json +++ b/packages/eventstream-serde-node/package.json @@ -46,10 +46,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/eventstream-serde-node", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/eventstream-serde-node", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/eventstream-serde-node" }, "typedoc": { diff --git a/packages/eventstream-serde-universal/package.json b/packages/eventstream-serde-universal/package.json index e6963e30f3f..9eac43f6021 100644 --- a/packages/eventstream-serde-universal/package.json +++ b/packages/eventstream-serde-universal/package.json @@ -48,10 +48,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/eventstream-serde-universal", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/eventstream-serde-universal", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/eventstream-serde-universal" }, "typedoc": { diff --git a/packages/experimental-identity-and-auth/README.md b/packages/experimental-identity-and-auth/README.md index 3436c728877..e547b167e7a 100644 --- a/packages/experimental-identity-and-auth/README.md +++ b/packages/experimental-identity-and-auth/README.md @@ -9,5 +9,5 @@ This package is experimental for the development of `experimentalIdentityAndAuth`. -See [experimental features](https://github.com/awslabs/smithy-typescript/blob/main/CONTRIBUTING.md#experimental-features) +See [experimental features](https://github.com/smithy-lang/smithy-typescript/blob/main/CONTRIBUTING.md#experimental-features) for more information. diff --git a/packages/experimental-identity-and-auth/package.json b/packages/experimental-identity-and-auth/package.json index 4764e25a3f5..1e43bfea3a5 100644 --- a/packages/experimental-identity-and-auth/package.json +++ b/packages/experimental-identity-and-auth/package.json @@ -48,10 +48,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/experimental-identity-and-auth", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/experimental-identity-and-auth", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/experimental-identity-and-auth" }, "devDependencies": { diff --git a/packages/fetch-http-handler/package.json b/packages/fetch-http-handler/package.json index 27e26769e7a..e1b0a6b0e7d 100644 --- a/packages/fetch-http-handler/package.json +++ b/packages/fetch-http-handler/package.json @@ -50,10 +50,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/fetch-http-handler", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/fetch-http-handler", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/fetch-http-handler" }, "typedoc": { diff --git a/packages/hash-blob-browser/package.json b/packages/hash-blob-browser/package.json index 365a4622107..31261c3a721 100644 --- a/packages/hash-blob-browser/package.json +++ b/packages/hash-blob-browser/package.json @@ -51,10 +51,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/hash-blob-browser", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/hash-blob-browser", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/hash-blob-browser" }, "typedoc": { diff --git a/packages/hash-node/package.json b/packages/hash-node/package.json index edd5a74cc4b..4b75a63c8b8 100644 --- a/packages/hash-node/package.json +++ b/packages/hash-node/package.json @@ -49,10 +49,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/hash-node", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/hash-node", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/hash-node" }, "typedoc": { diff --git a/packages/hash-stream-node/package.json b/packages/hash-stream-node/package.json index 3bca0cc122a..2724b39ed56 100644 --- a/packages/hash-stream-node/package.json +++ b/packages/hash-stream-node/package.json @@ -49,10 +49,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/hash-stream-node", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/hash-stream-node", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/hash-stream-node" }, "typedoc": { diff --git a/packages/invalid-dependency/package.json b/packages/invalid-dependency/package.json index a143cc8eee1..1992736b18e 100644 --- a/packages/invalid-dependency/package.json +++ b/packages/invalid-dependency/package.json @@ -36,10 +36,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/invalid-dependency", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/invalid-dependency", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/invalid-dependency" }, "devDependencies": { diff --git a/packages/is-array-buffer/package.json b/packages/is-array-buffer/package.json index 8f26a5506f4..96dc6f28f0d 100644 --- a/packages/is-array-buffer/package.json +++ b/packages/is-array-buffer/package.json @@ -39,10 +39,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/is-array-buffer", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/is-array-buffer", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/is-array-buffer" }, "devDependencies": { diff --git a/packages/md5-js/package.json b/packages/md5-js/package.json index 985f906b8cb..21460c51bed 100644 --- a/packages/md5-js/package.json +++ b/packages/md5-js/package.json @@ -47,10 +47,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/md5-js", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/md5-js", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/md5-js" }, "typedoc": { diff --git a/packages/middleware-apply-body-checksum/package.json b/packages/middleware-apply-body-checksum/package.json index 582881483f8..c6c5813bb56 100644 --- a/packages/middleware-apply-body-checksum/package.json +++ b/packages/middleware-apply-body-checksum/package.json @@ -43,10 +43,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/middleware-apply-body-checksum", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/middleware-apply-body-checksum", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/middleware-apply-body-checksum" }, "devDependencies": { diff --git a/packages/middleware-compression/package.json b/packages/middleware-compression/package.json index 6efb8c7c8f4..481c2000ed4 100644 --- a/packages/middleware-compression/package.json +++ b/packages/middleware-compression/package.json @@ -58,10 +58,10 @@ "./dist-es/compressString": "./dist-es/compressString.browser" }, "react-native": {}, - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/middleware-compression", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/middleware-compression", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/middleware-compression" }, "publishConfig": { diff --git a/packages/middleware-content-length/package.json b/packages/middleware-content-length/package.json index f98f6d9114a..44a231dee52 100644 --- a/packages/middleware-content-length/package.json +++ b/packages/middleware-content-length/package.json @@ -41,10 +41,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/middleware-content-length", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/middleware-content-length", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/middleware-content-length" }, "devDependencies": { diff --git a/packages/middleware-endpoint/package.json b/packages/middleware-endpoint/package.json index cc3ab906b96..1a663c5dcd6 100644 --- a/packages/middleware-endpoint/package.json +++ b/packages/middleware-endpoint/package.json @@ -59,10 +59,10 @@ "./dist-es/adaptors/getEndpointFromConfig": "./dist-es/adaptors/getEndpointFromConfig.browser", "./dist-cjs/adaptors/getEndpointFromConfig": "./dist-cjs/adaptors/getEndpointFromConfig.browser" }, - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/middleware-endpoint", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/middleware-endpoint", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/middleware-endpoint" }, "typedoc": { diff --git a/packages/middleware-retry/README.md b/packages/middleware-retry/README.md index 4da538f349c..21ce94725be 100644 --- a/packages/middleware-retry/README.md +++ b/packages/middleware-retry/README.md @@ -5,7 +5,7 @@ ## Usage -See [@smithy/util-retry](https://github.com/awslabs/smithy-typescript/tree/main/packages/util-retry) +See [@smithy/util-retry](https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-retry) for retry behavior and configuration. See also: [AWS Documentation: Retry behavior](https://docs.aws.amazon.com/sdkref/latest/guide/feature-retry-behavior.html). diff --git a/packages/middleware-retry/package.json b/packages/middleware-retry/package.json index 5f66be8be9a..a8b52f98d2b 100644 --- a/packages/middleware-retry/package.json +++ b/packages/middleware-retry/package.json @@ -64,10 +64,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/middleware-retry", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/middleware-retry", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/middleware-retry" }, "typedoc": { diff --git a/packages/middleware-serde/package.json b/packages/middleware-serde/package.json index a62ff2e795b..a1c87778561 100644 --- a/packages/middleware-serde/package.json +++ b/packages/middleware-serde/package.json @@ -41,10 +41,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/middleware-serde", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/middleware-serde", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/middleware-serde" }, "devDependencies": { diff --git a/packages/middleware-stack/package.json b/packages/middleware-stack/package.json index 86e6407ce5e..9bdb0e257c8 100644 --- a/packages/middleware-stack/package.json +++ b/packages/middleware-stack/package.json @@ -48,10 +48,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/middleware-stack", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/middleware-stack", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/middleware-stack" }, "typedoc": { diff --git a/packages/node-config-provider/package.json b/packages/node-config-provider/package.json index 396d55b3b5a..c0c54885750 100644 --- a/packages/node-config-provider/package.json +++ b/packages/node-config-provider/package.json @@ -50,10 +50,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/node-config-provider", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/node-config-provider", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/node-config-provider" }, "typedoc": { diff --git a/packages/node-http-handler/package.json b/packages/node-http-handler/package.json index f5126f778e0..2e39203d388 100644 --- a/packages/node-http-handler/package.json +++ b/packages/node-http-handler/package.json @@ -52,10 +52,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/node-http-handler", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/node-http-handler", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/node-http-handler" }, "typedoc": { diff --git a/packages/property-provider/package.json b/packages/property-provider/package.json index 9d9fed04628..2b102cbb979 100644 --- a/packages/property-provider/package.json +++ b/packages/property-provider/package.json @@ -39,10 +39,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/property-provider", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/property-provider", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/property-provider" }, "devDependencies": { diff --git a/packages/protocol-http/package.json b/packages/protocol-http/package.json index 0aec8b4e0ef..5c37cd2a362 100644 --- a/packages/protocol-http/package.json +++ b/packages/protocol-http/package.json @@ -40,10 +40,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/protocol-http", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/protocol-http", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/protocol-http" }, "devDependencies": { diff --git a/packages/querystring-builder/package.json b/packages/querystring-builder/package.json index 289e18ab654..914a615fbaa 100644 --- a/packages/querystring-builder/package.json +++ b/packages/querystring-builder/package.json @@ -39,10 +39,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/querystring-builder", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/querystring-builder", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/querystring-builder" }, "devDependencies": { diff --git a/packages/querystring-parser/package.json b/packages/querystring-parser/package.json index 95db4d55570..92676f1c91a 100644 --- a/packages/querystring-parser/package.json +++ b/packages/querystring-parser/package.json @@ -39,10 +39,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/querystring-parser", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/querystring-parser", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/querystring-parser" }, "devDependencies": { diff --git a/packages/service-client-documentation-generator/package.json b/packages/service-client-documentation-generator/package.json index 4f73e1bb550..42e8c3e2239 100644 --- a/packages/service-client-documentation-generator/package.json +++ b/packages/service-client-documentation-generator/package.json @@ -47,10 +47,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/client-documentation-generator", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/client-documentation-generator", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/client-documentation-generator" }, "publishConfig": { diff --git a/packages/service-error-classification/package.json b/packages/service-error-classification/package.json index bc4edf34ac1..5693eff4c2a 100644 --- a/packages/service-error-classification/package.json +++ b/packages/service-error-classification/package.json @@ -41,10 +41,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/service-error-classification", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/service-error-classification", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/service-error-classification" }, "typedoc": { diff --git a/packages/shared-ini-file-loader/package.json b/packages/shared-ini-file-loader/package.json index 8d77e1770e6..c58007fde9f 100644 --- a/packages/shared-ini-file-loader/package.json +++ b/packages/shared-ini-file-loader/package.json @@ -57,10 +57,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/shared-ini-file-loader", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/shared-ini-file-loader", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/shared-ini-file-loader" }, "typedoc": { diff --git a/packages/shared-ini-file-loader/src/parseIni.spec.ts b/packages/shared-ini-file-loader/src/parseIni.spec.ts index c34107b1a03..c1dbdc87695 100644 --- a/packages/shared-ini-file-loader/src/parseIni.spec.ts +++ b/packages/shared-ini-file-loader/src/parseIni.spec.ts @@ -60,10 +60,10 @@ describe(parseIni.name, () => { ); // Some characters are not allowed in profile name, but we parse them as customers use them. - // `@` https://github.com/awslabs/smithy-typescript/issues/1026 + // `@` https://github.com/smithy-lang/smithy-typescript/issues/1026 // `+` https://github.com/aws/aws-sdk-js-v3/issues/5373 // `.` https://github.com/aws/aws-sdk-js-v3/issues/5449 - // `/` https://github.com/awslabs/smithy-typescript/issues/1053 + // `/` https://github.com/smithy-lang/smithy-typescript/issues/1053 // `%` https://github.com/aws/aws-sdk-java-v2/pull/1538 // `:` https://github.com/aws/aws-sdk-java-v2/pull/1898 it.each(["-", "_", "@", "+", ".", "/", "%", ":"])( diff --git a/packages/signature-v4/package.json b/packages/signature-v4/package.json index 242384cbc1a..16506365ecf 100644 --- a/packages/signature-v4/package.json +++ b/packages/signature-v4/package.json @@ -54,10 +54,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/signature-v4", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/signature-v4", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/signature-v4" }, "typedoc": { diff --git a/packages/smithy-client/package.json b/packages/smithy-client/package.json index c6b5f7c129f..030e862caab 100644 --- a/packages/smithy-client/package.json +++ b/packages/smithy-client/package.json @@ -45,10 +45,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/smithy-client", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/smithy-client", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/smithy-client" }, "devDependencies": { diff --git a/packages/types/package.json b/packages/types/package.json index 087ce56f770..002e1c7140b 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -39,10 +39,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/types", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/types", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/types" }, "devDependencies": { diff --git a/packages/url-parser/package.json b/packages/url-parser/package.json index f1128c7ca71..4b10caf4378 100644 --- a/packages/url-parser/package.json +++ b/packages/url-parser/package.json @@ -37,10 +37,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/url-parser", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/url-parser", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/url-parser" }, "devDependencies": { diff --git a/packages/util-base64/package.json b/packages/util-base64/package.json index 1a1135c877f..b93142c7f92 100644 --- a/packages/util-base64/package.json +++ b/packages/util-base64/package.json @@ -58,10 +58,10 @@ "./dist-cjs/fromBase64": "./dist-cjs/fromBase64.browser", "./dist-cjs/toBase64": "./dist-cjs/toBase64.browser" }, - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-base64", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-base64", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-base64" }, "typedoc": { diff --git a/packages/util-body-length-browser/package.json b/packages/util-body-length-browser/package.json index 451f85a8635..1f6063f2131 100644 --- a/packages/util-body-length-browser/package.json +++ b/packages/util-body-length-browser/package.json @@ -36,10 +36,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-body-length-browser", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-body-length-browser", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-body-length-browser" }, "devDependencies": { diff --git a/packages/util-body-length-node/package.json b/packages/util-body-length-node/package.json index 43bcab44546..220d841d69d 100644 --- a/packages/util-body-length-node/package.json +++ b/packages/util-body-length-node/package.json @@ -46,10 +46,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-body-length-node", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-body-length-node", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-body-length-node" }, "typedoc": { diff --git a/packages/util-buffer-from/package.json b/packages/util-buffer-from/package.json index 1b12cbd9123..5481a729d2b 100644 --- a/packages/util-buffer-from/package.json +++ b/packages/util-buffer-from/package.json @@ -46,10 +46,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-buffer-from", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-buffer-from", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-buffer-from" }, "typedoc": { diff --git a/packages/util-config-provider/package.json b/packages/util-config-provider/package.json index d0169b0328e..a68a0f66968 100644 --- a/packages/util-config-provider/package.json +++ b/packages/util-config-provider/package.json @@ -47,10 +47,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-config-provider", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-config-provider", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-config-provider" }, "typedoc": { diff --git a/packages/util-defaults-mode-browser/package.json b/packages/util-defaults-mode-browser/package.json index 0af8286eb37..89c31c3aa2f 100644 --- a/packages/util-defaults-mode-browser/package.json +++ b/packages/util-defaults-mode-browser/package.json @@ -51,10 +51,10 @@ ], "react-native": {}, "browser": {}, - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-defaults-mode-node", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-defaults-mode-node", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-defaults-mode-node" }, "typedoc": { diff --git a/packages/util-defaults-mode-node/package.json b/packages/util-defaults-mode-node/package.json index 3f0805cb15f..2f4c3132145 100644 --- a/packages/util-defaults-mode-node/package.json +++ b/packages/util-defaults-mode-node/package.json @@ -51,10 +51,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-defaults-mode-node", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-defaults-mode-node", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-defaults-mode-node" }, "typedoc": { diff --git a/packages/util-endpoints/package.json b/packages/util-endpoints/package.json index db0676f22aa..e19ca3d6314 100644 --- a/packages/util-endpoints/package.json +++ b/packages/util-endpoints/package.json @@ -53,10 +53,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/master/packages/util-endpoints", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/master/packages/util-endpoints", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-endpoints" }, "typedoc": { diff --git a/packages/util-hex-encoding/package.json b/packages/util-hex-encoding/package.json index c519b420647..3e424b6eea1 100644 --- a/packages/util-hex-encoding/package.json +++ b/packages/util-hex-encoding/package.json @@ -39,10 +39,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-hex-encoding", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-hex-encoding", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-hex-encoding" }, "devDependencies": { diff --git a/packages/util-middleware/package.json b/packages/util-middleware/package.json index ed33f40bd37..6cf608f3566 100644 --- a/packages/util-middleware/package.json +++ b/packages/util-middleware/package.json @@ -51,10 +51,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/master/packages/util-middleware", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/master/packages/util-middleware", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-middleware" }, "typedoc": { diff --git a/packages/util-retry/README.md b/packages/util-retry/README.md index 16408e4df49..bcf11a94246 100644 --- a/packages/util-retry/README.md +++ b/packages/util-retry/README.md @@ -74,5 +74,5 @@ const client = new S3Client({ You can implement the `RetryStrategyV2` interface. -Source: https://github.com/awslabs/smithy-typescript/blob/main/packages/types/src/retry.ts +Source: https://github.com/smithy-lang/smithy-typescript/blob/main/packages/types/src/retry.ts API Docs: https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-types/Interface/RetryStrategyV2/ diff --git a/packages/util-retry/package.json b/packages/util-retry/package.json index cef9deab999..ffe965fb89a 100644 --- a/packages/util-retry/package.json +++ b/packages/util-retry/package.json @@ -53,10 +53,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/master/packages/util-retry", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/master/packages/util-retry", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-retry" }, "typedoc": { diff --git a/packages/util-stream-browser/package.json b/packages/util-stream-browser/package.json index 22ba11bbd18..913dc8d700c 100644 --- a/packages/util-stream-browser/package.json +++ b/packages/util-stream-browser/package.json @@ -44,10 +44,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-stream-browser", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-stream-browser", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-stream-browser" }, "typedoc": { diff --git a/packages/util-stream-node/package.json b/packages/util-stream-node/package.json index 7ed8a35e964..b8f32d68bb6 100644 --- a/packages/util-stream-node/package.json +++ b/packages/util-stream-node/package.json @@ -46,10 +46,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-stream-node", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-stream-node", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-stream-node" }, "typedoc": { diff --git a/packages/util-stream/package.json b/packages/util-stream/package.json index 03a41cbbabc..da468960458 100644 --- a/packages/util-stream/package.json +++ b/packages/util-stream/package.json @@ -83,10 +83,10 @@ "./dist-cjs/splitStream": "./dist-cjs/splitStream.browser", "./dist-cjs/createBufferedReadable": "./dist-cjs/createBufferedReadableStream" }, - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-stream", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-stream", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-stream" }, "typedoc": { diff --git a/packages/util-uri-escape/package.json b/packages/util-uri-escape/package.json index 842acdc329b..2d37f8e616b 100644 --- a/packages/util-uri-escape/package.json +++ b/packages/util-uri-escape/package.json @@ -38,10 +38,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-uri-escape", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-uri-escape", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-uri-escape" }, "devDependencies": { diff --git a/packages/util-utf8/package.json b/packages/util-utf8/package.json index d7e5ef93c3e..7c0f172cf6f 100644 --- a/packages/util-utf8/package.json +++ b/packages/util-utf8/package.json @@ -51,10 +51,10 @@ "./dist-es/toUtf8": "./dist-es/toUtf8.browser" }, "react-native": {}, - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-utf8", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-utf8", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-utf8" }, "typedoc": { diff --git a/packages/util-waiter/package.json b/packages/util-waiter/package.json index 510c8ff38ab..eb21dc0bda4 100644 --- a/packages/util-waiter/package.json +++ b/packages/util-waiter/package.json @@ -41,10 +41,10 @@ "files": [ "dist-*/**" ], - "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/util-waiter", + "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-waiter", "repository": { "type": "git", - "url": "https://github.com/awslabs/smithy-typescript.git", + "url": "https://github.com/smithy-lang/smithy-typescript.git", "directory": "packages/util-waiter" }, "devDependencies": { diff --git a/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/ImportDeclarations.java b/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/ImportDeclarations.java index 3ebca744b7f..9b30121ec93 100644 --- a/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/ImportDeclarations.java +++ b/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/ImportDeclarations.java @@ -122,7 +122,7 @@ public String toString() { Map moduleImports = entry.getValue(); Set> entries = moduleImports.entrySet(); - // "*" imports are not supported https://github.com/awslabs/smithy-typescript/issues/211 + // "*" imports are not supported https://github.com/smithy-lang/smithy-typescript/issues/211 for (Map.Entry importEntry : entries) { if (importEntry.getValue().equals("*")) { throw new CodegenException("Star imports are not supported, attempted for " + module diff --git a/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/AddHttpApiKeyAuthPlugin.java b/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/AddHttpApiKeyAuthPlugin.java index a40cf61acbb..71eb494f7c3 100644 --- a/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/AddHttpApiKeyAuthPlugin.java +++ b/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/AddHttpApiKeyAuthPlugin.java @@ -123,7 +123,7 @@ private void writeAdditionalFiles( } String noTouchNoticePrefix = "// Please do not touch this file. It's generated from a template in:\n" - + "// https://github.com/awslabs/smithy-typescript/blob/main/smithy-typescript-codegen/" + + "// https://github.com/smithy-lang/smithy-typescript/blob/main/smithy-typescript-codegen/" + "src/main/resources/software/amazon/smithy/aws/typescript/codegen/integration/"; // Write the middleware source. diff --git a/smithy-typescript-ssdk-libs/server-apigateway/package.json b/smithy-typescript-ssdk-libs/server-apigateway/package.json index 058effba9e5..686693c9d89 100644 --- a/smithy-typescript-ssdk-libs/server-apigateway/package.json +++ b/smithy-typescript-ssdk-libs/server-apigateway/package.json @@ -21,7 +21,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/awslabs/smithy-typescript.git", + "url": "git+https://github.com/smithy-lang/smithy-typescript.git", "directory": "smithy-typescript-ssdk-libs/server-apigateway" }, "author": "AWS Smithy Team", @@ -57,9 +57,9 @@ } }, "bugs": { - "url": "https://github.com/awslabs/smithy-typescript/issues" + "url": "https://github.com/smithy-lang/smithy-typescript/issues" }, - "homepage": "https://github.com/awslabs/smithy-typescript#readme", + "homepage": "https://github.com/smithy-lang/smithy-typescript#readme", "publishConfig": { "directory": ".release/package" } diff --git a/smithy-typescript-ssdk-libs/server-common/package.json b/smithy-typescript-ssdk-libs/server-common/package.json index 4361df7df2b..66421505c1e 100644 --- a/smithy-typescript-ssdk-libs/server-common/package.json +++ b/smithy-typescript-ssdk-libs/server-common/package.json @@ -21,7 +21,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/awslabs/smithy-typescript.git", + "url": "git+https://github.com/smithy-lang/smithy-typescript.git", "directory": "smithy-typescript-libs/smithy-server-common" }, "author": "AWS Smithy Team", @@ -57,9 +57,9 @@ } }, "bugs": { - "url": "https://github.com/awslabs/smithy-typescript/issues" + "url": "https://github.com/smithy-lang/smithy-typescript/issues" }, - "homepage": "https://github.com/awslabs/smithy-typescript#readme", + "homepage": "https://github.com/smithy-lang/smithy-typescript#readme", "publishConfig": { "directory": ".release/package" } diff --git a/smithy-typescript-ssdk-libs/server-node/package.json b/smithy-typescript-ssdk-libs/server-node/package.json index d3b3004a0e2..e66ad256ccf 100644 --- a/smithy-typescript-ssdk-libs/server-node/package.json +++ b/smithy-typescript-ssdk-libs/server-node/package.json @@ -21,7 +21,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/awslabs/smithy-typescript.git", + "url": "git+https://github.com/smithy-lang/smithy-typescript.git", "directory": "smithy-typescript-ssdk-libs/server-node" }, "author": "AWS Smithy Team", @@ -56,9 +56,9 @@ } }, "bugs": { - "url": "https://github.com/awslabs/smithy-typescript/issues" + "url": "https://github.com/smithy-lang/smithy-typescript/issues" }, - "homepage": "https://github.com/awslabs/smithy-typescript#readme", + "homepage": "https://github.com/smithy-lang/smithy-typescript#readme", "publishConfig": { "directory": ".release/package" }