@enjoys/context-engine 1.6.0 → 1.7.0
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 +8 -8
- package/data/commands/aliyun.json +158 -0
- package/data/commands/amplify.json +174 -0
- package/data/commands/argo.json +212 -0
- package/data/commands/argocd.json +144 -35
- package/data/commands/aws-copilot.json +161 -0
- package/data/commands/az-devops.json +155 -0
- package/data/commands/bq.json +177 -0
- package/data/commands/calicoctl.json +154 -0
- package/data/commands/chamber.json +128 -0
- package/data/commands/cilium.json +154 -0
- package/data/commands/civo.json +147 -0
- package/data/commands/cloudflared.json +133 -0
- package/data/commands/cmctl.json +143 -0
- package/data/commands/crossplane.json +119 -0
- package/data/commands/devspace.json +198 -0
- package/data/commands/doctl.json +510 -156
- package/data/commands/doppler.json +161 -0
- package/data/commands/eb.json +201 -0
- package/data/commands/ecs-cli.json +132 -0
- package/data/commands/flux.json +190 -0
- package/data/commands/garden.json +180 -0
- package/data/commands/gsutil.json +197 -0
- package/data/commands/hcloud.json +169 -0
- package/data/commands/helmfile.json +178 -0
- package/data/commands/heroku.json +239 -0
- package/data/commands/ibmcloud.json +184 -0
- package/data/commands/infisical.json +127 -0
- package/data/commands/istioctl.json +129 -23
- package/data/commands/k3d.json +156 -0
- package/data/commands/k3s.json +134 -0
- package/data/commands/k9s.json +169 -62
- package/data/commands/kamel.json +155 -0
- package/data/commands/kn.json +160 -0
- package/data/commands/kube-score.json +86 -0
- package/data/commands/kubeconform.json +98 -0
- package/data/commands/kubectx.json +58 -0
- package/data/commands/kubens.json +45 -0
- package/data/commands/kustomize.json +82 -17
- package/data/commands/lightsail.json +168 -0
- package/data/commands/linkerd.json +174 -0
- package/data/commands/mc.json +236 -0
- package/data/commands/minikube.json +264 -60
- package/data/commands/oci.json +184 -0
- package/data/commands/okteto.json +164 -0
- package/data/commands/openstack.json +212 -0
- package/data/commands/popeye.json +109 -0
- package/data/commands/rancher.json +141 -0
- package/data/commands/rclone.json +275 -0
- package/data/commands/s3cmd.json +201 -0
- package/data/commands/scw.json +169 -0
- package/data/commands/skaffold.json +189 -0
- package/data/commands/skopeo.json +100 -19
- package/data/commands/sops.json +112 -24
- package/data/commands/stern.json +124 -0
- package/data/commands/telepresence.json +122 -0
- package/data/commands/tilt.json +160 -0
- package/data/commands/tkn.json +150 -0
- package/data/commands/upcloud.json +129 -0
- package/data/commands/velero.json +141 -0
- package/data/commands/vultr.json +157 -0
- package/data/commands/wrangler.json +129 -29
- package/data/manifest.json +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"description": "Cloudflare
|
|
3
|
+
"description": "Cloudflare Wrangler CLI — build and deploy Cloudflare Workers",
|
|
4
4
|
"category": "cloud",
|
|
5
5
|
"platforms": [
|
|
6
6
|
"linux",
|
|
@@ -16,59 +16,94 @@
|
|
|
16
16
|
"subcommands": [
|
|
17
17
|
{
|
|
18
18
|
"name": "init",
|
|
19
|
-
"description": "
|
|
19
|
+
"description": "Initialize a Worker project",
|
|
20
20
|
"examples": [
|
|
21
|
-
"wrangler init
|
|
21
|
+
"wrangler init",
|
|
22
|
+
"wrangler init my-worker",
|
|
23
|
+
"wrangler init my-worker --type typescript"
|
|
22
24
|
]
|
|
23
25
|
},
|
|
24
26
|
{
|
|
25
27
|
"name": "dev",
|
|
26
28
|
"description": "Start local dev server",
|
|
27
29
|
"examples": [
|
|
28
|
-
"wrangler dev"
|
|
30
|
+
"wrangler dev",
|
|
31
|
+
"wrangler dev --local",
|
|
32
|
+
"wrangler dev --port 8787",
|
|
33
|
+
"wrangler dev src/index.ts"
|
|
29
34
|
]
|
|
30
35
|
},
|
|
31
36
|
{
|
|
32
37
|
"name": "deploy",
|
|
33
|
-
"description": "Deploy
|
|
38
|
+
"description": "Deploy Worker",
|
|
34
39
|
"examples": [
|
|
35
|
-
"wrangler deploy"
|
|
40
|
+
"wrangler deploy",
|
|
41
|
+
"wrangler deploy --dry-run",
|
|
42
|
+
"wrangler deploy --env staging",
|
|
43
|
+
"wrangler deploy --minify"
|
|
36
44
|
]
|
|
37
45
|
},
|
|
38
46
|
{
|
|
39
47
|
"name": "publish",
|
|
40
|
-
"description": "Publish
|
|
48
|
+
"description": "Publish Worker (alias for deploy)",
|
|
41
49
|
"examples": [
|
|
42
50
|
"wrangler publish"
|
|
43
51
|
]
|
|
44
52
|
},
|
|
45
53
|
{
|
|
46
54
|
"name": "tail",
|
|
47
|
-
"description": "
|
|
55
|
+
"description": "Tail Worker logs",
|
|
48
56
|
"examples": [
|
|
49
|
-
"wrangler tail"
|
|
57
|
+
"wrangler tail",
|
|
58
|
+
"wrangler tail my-worker",
|
|
59
|
+
"wrangler tail --format json"
|
|
50
60
|
]
|
|
51
61
|
},
|
|
52
62
|
{
|
|
53
|
-
"name": "secret
|
|
54
|
-
"description": "
|
|
63
|
+
"name": "secret",
|
|
64
|
+
"description": "Manage Worker secrets",
|
|
55
65
|
"examples": [
|
|
56
|
-
"wrangler secret put MY_SECRET"
|
|
66
|
+
"wrangler secret put MY_SECRET",
|
|
67
|
+
"wrangler secret list",
|
|
68
|
+
"wrangler secret delete MY_SECRET"
|
|
57
69
|
]
|
|
58
70
|
},
|
|
59
71
|
{
|
|
60
|
-
"name": "kv",
|
|
61
|
-
"description": "Manage KV
|
|
72
|
+
"name": "kv:namespace",
|
|
73
|
+
"description": "Manage KV namespaces",
|
|
62
74
|
"examples": [
|
|
63
|
-
"wrangler kv
|
|
64
|
-
"wrangler kv
|
|
75
|
+
"wrangler kv:namespace list",
|
|
76
|
+
"wrangler kv:namespace create MY_KV",
|
|
77
|
+
"wrangler kv:namespace delete --namespace-id xxx"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "kv:key",
|
|
82
|
+
"description": "Manage KV keys",
|
|
83
|
+
"examples": [
|
|
84
|
+
"wrangler kv:key list --namespace-id xxx",
|
|
85
|
+
"wrangler kv:key put --namespace-id xxx my-key my-value",
|
|
86
|
+
"wrangler kv:key get --namespace-id xxx my-key",
|
|
87
|
+
"wrangler kv:key delete --namespace-id xxx my-key"
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "kv:bulk",
|
|
92
|
+
"description": "Bulk KV operations",
|
|
93
|
+
"examples": [
|
|
94
|
+
"wrangler kv:bulk put --namespace-id xxx data.json",
|
|
95
|
+
"wrangler kv:bulk delete --namespace-id xxx keys.json"
|
|
65
96
|
]
|
|
66
97
|
},
|
|
67
98
|
{
|
|
68
99
|
"name": "r2",
|
|
69
100
|
"description": "Manage R2 storage",
|
|
70
101
|
"examples": [
|
|
71
|
-
"wrangler r2 bucket list"
|
|
102
|
+
"wrangler r2 bucket list",
|
|
103
|
+
"wrangler r2 bucket create my-bucket",
|
|
104
|
+
"wrangler r2 bucket delete my-bucket",
|
|
105
|
+
"wrangler r2 object get my-bucket/key",
|
|
106
|
+
"wrangler r2 object put my-bucket/key --file ./file.txt"
|
|
72
107
|
]
|
|
73
108
|
},
|
|
74
109
|
{
|
|
@@ -76,14 +111,30 @@
|
|
|
76
111
|
"description": "Manage D1 databases",
|
|
77
112
|
"examples": [
|
|
78
113
|
"wrangler d1 list",
|
|
79
|
-
"wrangler d1
|
|
114
|
+
"wrangler d1 create my-db",
|
|
115
|
+
"wrangler d1 execute my-db --command 'SELECT * FROM users'",
|
|
116
|
+
"wrangler d1 execute my-db --file schema.sql",
|
|
117
|
+
"wrangler d1 migrations create my-db create-users",
|
|
118
|
+
"wrangler d1 migrations apply my-db"
|
|
80
119
|
]
|
|
81
120
|
},
|
|
82
121
|
{
|
|
83
122
|
"name": "pages",
|
|
84
|
-
"description": "Manage Pages
|
|
123
|
+
"description": "Manage Cloudflare Pages",
|
|
124
|
+
"examples": [
|
|
125
|
+
"wrangler pages project list",
|
|
126
|
+
"wrangler pages project create my-project",
|
|
127
|
+
"wrangler pages deploy ./dist",
|
|
128
|
+
"wrangler pages deployment list --project-name my-project"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "queues",
|
|
133
|
+
"description": "Manage Queues",
|
|
85
134
|
"examples": [
|
|
86
|
-
"wrangler
|
|
135
|
+
"wrangler queues list",
|
|
136
|
+
"wrangler queues create my-queue",
|
|
137
|
+
"wrangler queues delete my-queue"
|
|
87
138
|
]
|
|
88
139
|
},
|
|
89
140
|
{
|
|
@@ -92,19 +143,62 @@
|
|
|
92
143
|
"examples": [
|
|
93
144
|
"wrangler login"
|
|
94
145
|
]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "whoami",
|
|
149
|
+
"description": "Show authenticated user",
|
|
150
|
+
"examples": [
|
|
151
|
+
"wrangler whoami"
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "types",
|
|
156
|
+
"description": "Generate TypeScript types",
|
|
157
|
+
"examples": [
|
|
158
|
+
"wrangler types"
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "generate",
|
|
163
|
+
"description": "Generate a Worker from template",
|
|
164
|
+
"examples": [
|
|
165
|
+
"wrangler generate my-worker https://github.com/cloudflare/worker-template"
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "vectorize",
|
|
170
|
+
"description": "Manage Vectorize indexes",
|
|
171
|
+
"examples": [
|
|
172
|
+
"wrangler vectorize create my-index --dimensions 768 --metric cosine",
|
|
173
|
+
"wrangler vectorize list",
|
|
174
|
+
"wrangler vectorize delete my-index"
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "ai",
|
|
179
|
+
"description": "Manage Workers AI",
|
|
180
|
+
"examples": [
|
|
181
|
+
"wrangler ai models list"
|
|
182
|
+
]
|
|
95
183
|
}
|
|
96
184
|
],
|
|
97
185
|
"globalOptions": [
|
|
98
186
|
{
|
|
99
|
-
"name": "
|
|
100
|
-
"
|
|
101
|
-
"
|
|
187
|
+
"name": "--config",
|
|
188
|
+
"short": "-c",
|
|
189
|
+
"description": "Config file path",
|
|
190
|
+
"type": "string"
|
|
102
191
|
},
|
|
103
192
|
{
|
|
104
193
|
"name": "--env",
|
|
105
194
|
"short": "-e",
|
|
106
195
|
"description": "Environment",
|
|
107
196
|
"type": "string"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "--compatibility-date",
|
|
200
|
+
"description": "Compatibility date",
|
|
201
|
+
"type": "string"
|
|
108
202
|
}
|
|
109
203
|
],
|
|
110
204
|
"examples": [
|
|
@@ -112,13 +206,19 @@
|
|
|
112
206
|
"wrangler dev",
|
|
113
207
|
"wrangler deploy",
|
|
114
208
|
"wrangler tail",
|
|
115
|
-
"wrangler
|
|
116
|
-
"wrangler
|
|
209
|
+
"wrangler secret put MY_SECRET",
|
|
210
|
+
"wrangler kv:namespace create MY_KV",
|
|
211
|
+
"wrangler r2 bucket list",
|
|
212
|
+
"wrangler d1 create my-db",
|
|
213
|
+
"wrangler d1 execute my-db --file schema.sql",
|
|
214
|
+
"wrangler pages deploy ./dist",
|
|
215
|
+
"wrangler login",
|
|
216
|
+
"wrangler whoami"
|
|
117
217
|
],
|
|
118
218
|
"relatedCommands": [
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
219
|
+
"cloudflared",
|
|
220
|
+
"netlify",
|
|
221
|
+
"vercel",
|
|
222
|
+
"firebase"
|
|
123
223
|
]
|
|
124
224
|
}
|
package/data/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.7.0",
|
|
3
3
|
"description": "Monaco editor language support data for 94 languages across 26 providers: codeActions, codeLens, color, commands, completion, declaration, definition, documentHighlight, documentRangeFormatting, documentSymbol, foldingRange, formatting, hover, implementation, inlayHints, inlineCompletions, linkedEditingRange, links, onTypeFormatting, rangeSemanticTokens, references, rename, selectionRange, semanticTokens, signatureHelp, typeDefinition",
|
|
4
4
|
"generatedAt": "2026-03-29",
|
|
5
5
|
"totalLanguages": 94,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enjoys/context-engine",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Monaco Editor language intelligence engine — 94 languages, 26 providers,
|
|
3
|
+
"version": "1.7.0",
|
|
4
|
+
"description": "Monaco Editor language intelligence engine — 94 languages, 26 providers, 464 CLI command files (447 unique). Completions, hover, definitions, code actions, formatting, symbols, and more as pre-built JSON data with zero backend",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"exports": {
|