aws-lambda-devkit 0.1.0 → 0.1.1

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/README.md CHANGED
@@ -4,10 +4,13 @@
4
4
 
5
5
  | | Name |
6
6
  |---|------|
7
+ | **Repository** | [github.com/asimsheikh12/lambda-devkit](https://github.com/asimsheikh12/lambda-devkit) |
7
8
  | **npm package** | [`aws-lambda-devkit`](https://www.npmjs.com/package/aws-lambda-devkit) |
8
9
  | **CLI command** | `lamkit` |
9
10
  | **Config file** | `lamkit.config.js` (also `.mjs`, `.cjs`, `.ts`) |
10
11
 
12
+ ![CI](https://github.com/asimsheikh12/lambda-devkit/actions/workflows/ci.yml/badge.svg)
13
+
11
14
  Install as a dev dependency. Complements SAM, CDK, and SST; does not deploy infrastructure.
12
15
 
13
16
  ---
package/docs/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Lambda DevKit documentation
2
2
 
3
- Guides for **[Lambda DevKit](https://www.npmjs.com/package/aws-lambda-devkit)** — npm package **`aws-lambda-devkit`**, CLI **`lamkit`**.
3
+ Guides for **[Lambda DevKit](https://github.com/asimsheikh12/lambda-devkit)** — npm package **`aws-lambda-devkit`**, CLI **`lamkit`**.
4
4
 
5
5
  Complete walkthroughs for integrating the toolkit into your Node.js Lambda project. All examples use generic names (`worker`, `WORKER_QUEUE_URL`, etc.) — copy them and replace with your own paths and env vars.
6
6
 
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "aws-lambda-devkit",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Local AWS Lambda development toolkit (npm: aws-lambda-devkit, CLI: lamkit) — invoke handlers locally with AWS-shaped events",
5
5
  "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/asimsheikh12/lambda-devkit.git"
9
+ },
10
+ "homepage": "https://github.com/asimsheikh12/lambda-devkit#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/asimsheikh12/lambda-devkit/issues"
13
+ },
6
14
  "type": "module",
7
15
  "engines": {
8
16
  "node": ">=20"