-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 980 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@mieweb/cli",
"version": "0.2.1",
"description": "`mieweb` CLI — a thin, target-aware wrapper over wrangler. On the cloudflare target it delegates verbatim to the real wrangler binary; on other targets it drives the matching @mieweb adapter (e.g. the local Node host harness).",
"type": "module",
"license": "MIT",
"author": "MIEWEB",
"homepage": "https://github.com/mieweb/cloud#readme",
"bugs": "https://github.com/mieweb/cloud/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/mieweb/cloud.git",
"directory": "packages/cli"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mieweb",
"cloudflare",
"wrangler",
"workers",
"cli",
"serverless"
],
"engines": {
"node": ">=22.16.0"
},
"bin": {
"mieweb": "./src/index.mjs"
},
"dependencies": {
"@mieweb/cloud-adapters": "workspace:*"
},
"files": [
"src",
"mieweb-config.schema.json"
]
}