@crossdelta/infrastructure 0.4.0 → 0.4.2

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.
Files changed (4) hide show
  1. package/README.md +17 -5
  2. package/dist/index.cjs +18 -336981
  3. package/dist/index.js +13 -336977
  4. package/package.json +15 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossdelta/infrastructure",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -34,6 +34,19 @@
34
34
  ]
35
35
  }
36
36
  },
37
+ "peerDependencies": {
38
+ "@pulumi/digitalocean": "^4.0.0",
39
+ "@pulumi/kubernetes": "^4.0.0",
40
+ "@pulumi/pulumi": "^3.0.0"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "@pulumi/digitalocean": {
44
+ "optional": true
45
+ },
46
+ "@pulumi/kubernetes": {
47
+ "optional": true
48
+ }
49
+ },
37
50
  "devDependencies": {
38
51
  "@pulumi/digitalocean": "^4.55.0",
39
52
  "@pulumi/kubernetes": "^4.21.0",
@@ -44,7 +57,7 @@
44
57
  "typescript": "^5.9.3"
45
58
  },
46
59
  "scripts": {
47
- "build": "bun build --target=node --format=esm --outfile dist/index.js lib/index.ts && bun build --target=node --format=cjs --outfile dist/index.cjs lib/index.ts && bun build --target=node --format=esm --outfile dist/env.js lib/env.ts && bun build --target=node --format=cjs --outfile dist/env.cjs lib/env.ts && bun build --target=node --format=esm --outfile bin/generate-env.mjs bin/generate-env.ts && tsc -p tsconfig.build.json",
60
+ "build": "bun build --target=node --format=esm --external '@pulumi/*' --outfile dist/index.js lib/index.ts && bun build --target=node --format=cjs --external '@pulumi/*' --outfile dist/index.cjs lib/index.ts && bun build --target=node --format=esm --outfile dist/env.js lib/env.ts && bun build --target=node --format=cjs --outfile dist/env.cjs lib/env.ts && bun build --target=node --format=esm --outfile bin/generate-env.mjs bin/generate-env.ts && tsc -p tsconfig.build.json",
48
61
  "prepublishOnly": "bun run build",
49
62
  "generate-env": "bun run cli/commands/generate-env.ts",
50
63
  "lint": "biome lint --fix",