pulumi-buildkite 1.31.1

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 (1) hide show
  1. package/package.json +62 -0
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "pulumi-buildkite",
3
+ "description": "A Pulumi provider for managing Buildkite CI/CD pipelines, agents, clusters, and team resources, dynamically bridged from the Terraform Buildkite provider with support for pipelines, schedules, agent tokens, clusters, and organization settings.",
4
+ "version": "1.31.1",
5
+ "homepage": "https://pulumi.khanh.id/docs/providers/buildkite",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/hckhanh/pulumi-any-terraform.git",
9
+ "directory": "packages/buildkite"
10
+ },
11
+ "private": false,
12
+ "sideEffects": false,
13
+ "main": "./bin/index.js",
14
+ "module": "./bin/index.js",
15
+ "types": "./bin/index.d.ts",
16
+ "exports": {
17
+ ".": "./bin/index.js",
18
+ "./package.json": "./package.json"
19
+ },
20
+ "dependencies": {
21
+ "async-mutex": "0.5.0"
22
+ },
23
+ "devDependencies": {
24
+ "@pulumi/pulumi": "3.229.0",
25
+ "@types/node": "24.12.0",
26
+ "typescript": "5.9.3"
27
+ },
28
+ "peerDependencies": {
29
+ "@pulumi/pulumi": ">=3.190.0 <4"
30
+ },
31
+ "files": [
32
+ "bin",
33
+ "README.md"
34
+ ],
35
+ "keywords": [
36
+ "pulumi",
37
+ "buildkite",
38
+ "ci-cd",
39
+ "pipelines",
40
+ "continuous-integration",
41
+ "continuous-delivery",
42
+ "agents",
43
+ "clusters",
44
+ "terraform",
45
+ "provider",
46
+ "infrastructure"
47
+ ],
48
+ "license": "MIT",
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "pulumi": {
53
+ "resource": true,
54
+ "name": "terraform-provider",
55
+ "version": "1.1.1",
56
+ "parameterization": {
57
+ "name": "buildkite",
58
+ "version": "1.31.1",
59
+ "value": "eyJyZW1vdGUiOnsidXJsIjoicmVnaXN0cnkub3BlbnRvZnUub3JnL2J1aWxka2l0ZS9idWlsZGtpdGUiLCJ2ZXJzaW9uIjoiMS4zMS4xIn19"
60
+ }
61
+ }
62
+ }