cdk-local 0.0.1 → 0.1.0

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/package.json CHANGED
@@ -1,10 +1,103 @@
1
1
  {
2
2
  "name": "cdk-local",
3
- "version": "0.0.1",
4
- "description": "OIDC trusted publishing setup package for cdk-local",
3
+ "version": "0.1.0",
4
+ "description": "Run AWS CDK stacks locally with Docker. A native, CDK-first alternative to sam local.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "bin": {
8
+ "cdkl": "dist/cli.js"
9
+ },
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ },
15
+ "./state-provider": {
16
+ "types": "./dist/local/local-state-provider.d.ts",
17
+ "import": "./dist/local/local-state-provider.js"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md",
23
+ "LICENSE"
24
+ ],
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/go-to-k/cdk-local.git"
31
+ },
32
+ "homepage": "https://github.com/go-to-k/cdk-local",
33
+ "bugs": {
34
+ "url": "https://github.com/go-to-k/cdk-local/issues"
35
+ },
36
+ "type": "module",
37
+ "packageManager": "pnpm@11.1.0",
5
38
  "keywords": [
6
- "oidc",
7
- "trusted-publishing",
8
- "setup"
9
- ]
39
+ "aws",
40
+ "cdk",
41
+ "local",
42
+ "lambda",
43
+ "api-gateway",
44
+ "ecs",
45
+ "docker",
46
+ "sam-local",
47
+ "developer-tools"
48
+ ],
49
+ "author": {
50
+ "name": "go-to-k",
51
+ "url": "https://github.com/go-to-k"
52
+ },
53
+ "license": "Apache-2.0",
54
+ "engines": {
55
+ "node": ">=20.0.0"
56
+ },
57
+ "dependencies": {
58
+ "@aws-cdk/cloud-assembly-api": "^2.2.0",
59
+ "@aws-cdk/toolkit-lib": "^1.26.0",
60
+ "@aws-sdk/client-cloudformation": "^3.1017.0",
61
+ "@aws-sdk/client-ecr": "^3.1019.0",
62
+ "@aws-sdk/client-eventbridge": "^3.1017.0",
63
+ "@aws-sdk/client-kinesis": "^3.1018.0",
64
+ "@aws-sdk/client-lambda": "^3.0.0",
65
+ "@aws-sdk/client-secrets-manager": "^3.1017.0",
66
+ "@aws-sdk/client-sfn": "^3.1017.0",
67
+ "@aws-sdk/client-sns": "^3.1017.0",
68
+ "@aws-sdk/client-sqs": "^3.0.0",
69
+ "@aws-sdk/client-ssm": "^3.1017.0",
70
+ "@aws-sdk/client-sts": "^3.1016.0",
71
+ "chokidar": "^5.0.0",
72
+ "commander": "^12.0.0",
73
+ "graphlib": "^2.1.8",
74
+ "ws": "^8.20.0"
75
+ },
76
+ "devDependencies": {
77
+ "@semantic-release/changelog": "^6.0.3",
78
+ "@semantic-release/exec": "^7.1.0",
79
+ "@semantic-release/git": "^10.0.1",
80
+ "@semantic-release/github": "^12.0.0",
81
+ "@semantic-release/npm": "^13.0.0",
82
+ "@types/graphlib": "^2.1.12",
83
+ "@types/node": "^20.19.0",
84
+ "@types/ws": "^8.18.1",
85
+ "@typescript/native-preview": "7.0.0-dev.20260511.1",
86
+ "semantic-release": "^25.0.0",
87
+ "tsdown": "^0.22.0",
88
+ "typescript": "^6.0.3",
89
+ "vite-plus": "^0.1.20"
90
+ },
91
+ "peerDependencies": {
92
+ "aws-cdk-lib": "^2.0.0",
93
+ "constructs": "^10.0.0"
94
+ },
95
+ "peerDependenciesMeta": {
96
+ "aws-cdk-lib": {
97
+ "optional": false
98
+ },
99
+ "constructs": {
100
+ "optional": false
101
+ }
102
+ }
10
103
  }