feat: add repo importing

This commit is contained in:
2026-01-17 19:32:37 -08:00
parent 831259a6a6
commit fb62081ca8
28 changed files with 1823 additions and 116 deletions

26
cdk/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "cdk",
"version": "0.1.0",
"bin": {
"cdk": "bin/cdk.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^30",
"@types/node": "^24.10.1",
"jest": "^30",
"ts-jest": "^29",
"aws-cdk": "2.1101.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"dependencies": {
"aws-cdk-lib": "^2.234.1",
"constructs": "^10.0.0"
}
}