diff --git a/package.json b/package.json new file mode 100644 index 0000000..9a5d45a --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "pulumi-crds", + "version": "1.0.0", + "private": true, + "license": "Apache-2.0", + "scripts": { + "generate": "node scripts/generate-crds.js", + "build": "tsc -p tsconfig.json" + }, + "dependencies": { + "@pulumi/pulumi": "^3.0.0" + }, + "devDependencies": { + "typescript": "^5.0.0", + "@types/node": "^20.0.0" + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..4432bff --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "target": "es2020", + "module": "commonjs", + "moduleResolution": "node", + "declaration": true, + "skipLibCheck": true, + "esModuleInterop": true + }, + "include": ["generated/**/*.ts", "**/*.ts"], + "exclude": ["node_modules"] +}