@go-to-k/cdkd 0.0.1 → 0.0.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.
package/package.json CHANGED
@@ -1,10 +1,134 @@
1
1
  {
2
2
  "name": "@go-to-k/cdkd",
3
- "version": "0.0.1",
4
- "description": "OIDC trusted publishing setup package for @go-to-k/cdkd",
3
+ "version": "0.0.3",
4
+ "description": "CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "cdkd": "./dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/go-to-k/cdkd.git"
17
+ },
18
+ "homepage": "https://github.com/go-to-k/cdkd",
19
+ "bugs": {
20
+ "url": "https://github.com/go-to-k/cdkd/issues"
21
+ },
22
+ "type": "module",
23
+ "scripts": {
24
+ "build": "node build.mjs",
25
+ "dev": "node build.mjs --watch",
26
+ "test": "vitest",
27
+ "test:ui": "vitest --ui",
28
+ "test:coverage": "vitest --coverage",
29
+ "lint": "eslint src --ext .ts",
30
+ "lint:fix": "eslint src --ext .ts --fix",
31
+ "format": "prettier --write \"src/**/*.ts\"",
32
+ "format:check": "prettier --check \"src/**/*.ts\"",
33
+ "typecheck": "tsc --noEmit",
34
+ "prepublishOnly": "pnpm run build"
35
+ },
5
36
  "keywords": [
6
- "oidc",
7
- "trusted-publishing",
8
- "setup"
9
- ]
37
+ "aws",
38
+ "cdk",
39
+ "cloudformation",
40
+ "cloud-control",
41
+ "deploy",
42
+ "infrastructure-as-code",
43
+ "iac"
44
+ ],
45
+ "author": "",
46
+ "license": "Apache-2.0",
47
+ "engines": {
48
+ "node": ">=20.0.0"
49
+ },
50
+ "dependencies": {
51
+ "archiver": "^7.0.0",
52
+ "@aws-sdk/client-api-gateway": "^3.1017.0",
53
+ "@aws-sdk/client-apigatewayv2": "^3.1018.0",
54
+ "@aws-sdk/client-appsync": "^3.1018.0",
55
+ "@aws-sdk/client-bedrock-agentcore": "^3.1017.0",
56
+ "@aws-sdk/client-bedrock-agentcore-control": "^3.1017.0",
57
+ "@aws-sdk/client-cloudcontrol": "^3.0.0",
58
+ "@aws-sdk/client-cloudformation": "^3.1017.0",
59
+ "@aws-sdk/client-cloudfront": "^3.1017.0",
60
+ "@aws-sdk/client-cloudtrail": "^3.1019.0",
61
+ "@aws-sdk/client-cloudwatch": "^3.1017.0",
62
+ "@aws-sdk/client-cloudwatch-logs": "^3.1018.0",
63
+ "@aws-sdk/client-codebuild": "^3.1019.0",
64
+ "@aws-sdk/client-cognito-identity-provider": "^3.1017.0",
65
+ "@aws-sdk/client-dynamodb": "^3.1017.0",
66
+ "@aws-sdk/client-ec2": "^3.1016.0",
67
+ "@aws-sdk/client-ecr": "^3.1019.0",
68
+ "@aws-sdk/client-ecs": "^3.1017.0",
69
+ "@aws-sdk/client-efs": "^3.1018.0",
70
+ "@aws-sdk/client-elastic-load-balancing-v2": "^3.1017.0",
71
+ "@aws-sdk/client-elasticache": "^3.1018.0",
72
+ "@aws-sdk/client-eventbridge": "^3.1017.0",
73
+ "@aws-sdk/client-firehose": "^3.1018.0",
74
+ "@aws-sdk/client-glue": "^3.1018.0",
75
+ "@aws-sdk/client-iam": "^3.0.0",
76
+ "@aws-sdk/client-kinesis": "^3.1018.0",
77
+ "@aws-sdk/client-kms": "^3.1018.0",
78
+ "@aws-sdk/client-lambda": "^3.0.0",
79
+ "@aws-sdk/client-rds": "^3.1017.0",
80
+ "@aws-sdk/client-route-53": "^3.1017.0",
81
+ "@aws-sdk/client-s3": "^3.0.0",
82
+ "@aws-sdk/client-s3tables": "^3.1019.0",
83
+ "@aws-sdk/client-s3vectors": "^3.1019.0",
84
+ "@aws-sdk/client-secrets-manager": "^3.1017.0",
85
+ "@aws-sdk/client-servicediscovery": "^3.1018.0",
86
+ "@aws-sdk/client-sfn": "^3.1017.0",
87
+ "@aws-sdk/client-sns": "^3.1017.0",
88
+ "@aws-sdk/client-sqs": "^3.0.0",
89
+ "@aws-sdk/client-ssm": "^3.1017.0",
90
+ "@aws-sdk/client-sts": "^3.1016.0",
91
+ "@aws-sdk/client-wafv2": "^3.1017.0",
92
+ "@aws-sdk/s3-request-presigner": "^3.1016.0",
93
+ "commander": "^12.0.0",
94
+ "graphlib": "^2.1.8",
95
+ "p-limit": "^5.0.0"
96
+ },
97
+ "devDependencies": {
98
+ "@semantic-release/changelog": "^6.0.3",
99
+ "@semantic-release/git": "^10.0.1",
100
+ "@semantic-release/github": "^12.0.0",
101
+ "@semantic-release/npm": "^13.0.0",
102
+ "@types/archiver": "^6.0.0",
103
+ "@types/graphlib": "^2.1.12",
104
+ "@types/node": "^20.0.0",
105
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
106
+ "@typescript-eslint/parser": "^7.0.0",
107
+ "@vitest/ui": "^1.0.0",
108
+ "esbuild": "^0.20.0",
109
+ "eslint": "^8.57.0",
110
+ "eslint-config-prettier": "^9.0.0",
111
+ "eslint-plugin-prettier": "^5.0.0",
112
+ "prettier": "^3.0.0",
113
+ "semantic-release": "^25.0.0",
114
+ "typescript": "^5.4.0",
115
+ "vitest": "^1.0.0"
116
+ },
117
+ "peerDependencies": {
118
+ "aws-cdk-lib": "^2.0.0",
119
+ "constructs": "^10.0.0"
120
+ },
121
+ "peerDependenciesMeta": {
122
+ "aws-cdk-lib": {
123
+ "optional": false
124
+ },
125
+ "constructs": {
126
+ "optional": false
127
+ }
128
+ },
129
+ "pnpm": {
130
+ "onlyBuiltDependencies": [
131
+ "esbuild"
132
+ ]
133
+ }
10
134
  }