@lambda-kata/cdk 0.1.3-rc.1 → 0.1.3-rc.3

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.
@@ -1,17 +1,3 @@
1
- /**
2
- * Kata Wrapper for Lambda Kata CDK Integration
3
- *
4
- * This module provides the main `kata()` function that transforms Node.js Lambda
5
- * functions to run via the Lambda Kata runtime. The transformation includes:
6
- * - Changing the runtime to Python 3.12
7
- * - Setting the handler to the Lambda Kata handler
8
- * - Attaching the customer-specific Lambda Layer
9
- * - Preserving the original handler path in a config layer
10
- *
11
- * Licensing is validated at CDK synthesis/deploy time only—no runtime network calls.
12
- *
13
- * @module kata-wrapper
14
- */
15
1
  import { Function as LambdaFunction } from 'aws-cdk-lib/aws-lambda';
16
2
  import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs';
17
3
  import { KataProps, LicensingResponse, TransformationConfig } from './types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambda-kata/cdk",
3
- "version": "0.1.3-rc.1",
3
+ "version": "0.1.3-rc.3",
4
4
  "description": "AWS CDK integration for Lambda Kata - Node.js Lambdas running via Lambda Kata runtime",
5
5
  "main": "out/dist/index.js",
6
6
  "types": "out/tsc/src/index.d.ts",
@@ -26,7 +26,7 @@
26
26
  ],
27
27
  "exports": {
28
28
  ".": {
29
- "types": "./out/tsc/index.d.ts",
29
+ "types": "./out/tsc/src/index.d.ts",
30
30
  "default": "./out/dist/index.js"
31
31
  }
32
32
  },
@@ -43,7 +43,7 @@
43
43
  "license": "Apache-2.0",
44
44
  "repository": {
45
45
  "type": "git",
46
- "url": "https://github.com/LambdaKata/cdk.git"
46
+ "url": "https://github.com/lambda-kata/cdk.git"
47
47
  },
48
48
  "engines": {
49
49
  "node": ">=18.0.0"