@go-to-k/cdkd 0.94.8 → 0.94.9
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 +2 -2
- package/dist/aws-clients-CuHRHcyW.js +428 -0
- package/dist/aws-clients-CuHRHcyW.js.map +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +40964 -80561
- package/dist/cli.js.map +1 -7
- package/dist/deploy-engine-Cg4l-zyr.js +9183 -0
- package/dist/deploy-engine-Cg4l-zyr.js.map +1 -0
- package/dist/go-to-k-cdkd-0.94.9.tgz +0 -0
- package/dist/index.d.ts +703 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -10260
- package/package.json +8 -31
- package/dist/go-to-k-cdkd-0.94.8.tgz +0 -0
- package/dist/index.js.map +0 -7
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@go-to-k/cdkd",
|
|
3
|
-
"version": "0.94.
|
|
3
|
+
"version": "0.94.9",
|
|
4
4
|
"description": "CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
6
7
|
"bin": {
|
|
7
8
|
"cdkd": "./dist/cli.js"
|
|
8
9
|
},
|
|
@@ -20,20 +21,7 @@
|
|
|
20
21
|
"url": "https://github.com/go-to-k/cdkd/issues"
|
|
21
22
|
},
|
|
22
23
|
"type": "module",
|
|
23
|
-
"
|
|
24
|
-
"build": "node build.mjs",
|
|
25
|
-
"dev": "node build.mjs --watch",
|
|
26
|
-
"test": "vitest run",
|
|
27
|
-
"test:watch": "vitest",
|
|
28
|
-
"test:ui": "vitest --ui",
|
|
29
|
-
"test:coverage": "vitest --coverage",
|
|
30
|
-
"lint": "eslint src --ext .ts",
|
|
31
|
-
"lint:fix": "eslint src --ext .ts --fix",
|
|
32
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
33
|
-
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
34
|
-
"typecheck": "tsc --noEmit",
|
|
35
|
-
"prepublishOnly": "pnpm run build"
|
|
36
|
-
},
|
|
24
|
+
"packageManager": "pnpm@11.1.0",
|
|
37
25
|
"keywords": [
|
|
38
26
|
"aws",
|
|
39
27
|
"cdk",
|
|
@@ -108,20 +96,14 @@
|
|
|
108
96
|
"@semantic-release/git": "^10.0.1",
|
|
109
97
|
"@semantic-release/github": "^12.0.0",
|
|
110
98
|
"@semantic-release/npm": "^13.0.0",
|
|
99
|
+
"@typescript/native-preview": "7.0.0-dev.20260511.1",
|
|
111
100
|
"@types/archiver": "^6.0.0",
|
|
112
101
|
"@types/graphlib": "^2.1.12",
|
|
113
|
-
"@types/node": "^20.
|
|
114
|
-
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
115
|
-
"@typescript-eslint/parser": "^7.0.0",
|
|
116
|
-
"@vitest/ui": "^1.0.0",
|
|
117
|
-
"esbuild": "^0.20.0",
|
|
118
|
-
"eslint": "^8.57.0",
|
|
119
|
-
"eslint-config-prettier": "^9.0.0",
|
|
120
|
-
"eslint-plugin-prettier": "^5.0.0",
|
|
121
|
-
"prettier": "^3.0.0",
|
|
102
|
+
"@types/node": "^20.19.0",
|
|
122
103
|
"semantic-release": "^25.0.0",
|
|
123
|
-
"
|
|
124
|
-
"
|
|
104
|
+
"tsdown": "^0.22.0",
|
|
105
|
+
"typescript": "^6.0.3",
|
|
106
|
+
"vite-plus": "^0.1.20"
|
|
125
107
|
},
|
|
126
108
|
"peerDependencies": {
|
|
127
109
|
"aws-cdk-lib": "^2.0.0",
|
|
@@ -134,10 +116,5 @@
|
|
|
134
116
|
"constructs": {
|
|
135
117
|
"optional": false
|
|
136
118
|
}
|
|
137
|
-
},
|
|
138
|
-
"pnpm": {
|
|
139
|
-
"onlyBuiltDependencies": [
|
|
140
|
-
"esbuild"
|
|
141
|
-
]
|
|
142
119
|
}
|
|
143
120
|
}
|
|
Binary file
|