-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@nexckycort/lambda-devkit",
"version": "0.0.18",
"author": "nexckycort <nexckycort@gmail.com>",
"description": "A development toolkit for compiling and running AWS Lambda functions locally with API Gateway simulation.",
"keywords": [
"aws-lambda",
"lambda-devkit",
"local-lambda",
"api-gateway-simulation",
"lambda-local-development",
"serverless-development",
"lambda-testing",
"local-api-gateway",
"lambda-cli",
"compile-typescript-lambda",
"run-lambda-locally",
"lambda-function-handler"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nexckycort/lambda-devkit.git"
},
"license": "MIT",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"types": "./index.d.ts",
"bin": {
"ldk": "bin.js"
},
"files": ["*"],
"scripts": {
"build": "rslib build && node postbuild.js",
"check": "biome check --write",
"dev": "rslib build --watch",
"start": "node ./dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^13.1.0",
"cosmiconfig": "^9.0.0",
"esbuild": "^0.25.1",
"tsx": "^4.19.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@microsoft/api-extractor": "^7.52.2",
"@rslib/core": "^0.5.5",
"@tsconfig/node22": "^22.0.1",
"@types/aws-lambda": "^8.10.148",
"@types/node": "^22.8.1",
"typescript": "^5.8.2"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
}
}