-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.19 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@mayan1124/deploy-cli",
"version": "0.3.2",
"description": "One-command deploys for static sites: local control plane, Netlify, Vercel, Cloudflare Pages, and S3 from a single CLI with an interactive UI, previews, rollback, and a health-check doctor.",
"type": "module",
"bin": {
"deploy": "cli.js"
},
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"files": [
"cli.js",
"lib/",
"docs/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node test/run.js && node test/providers.js && node test/cli.js && node test/ui.js && node test/cleanup.js",
"smoke": "node scripts/smoke-real.mjs",
"cleanup": "node scripts/cleanup-smoke.mjs",
"pack": "npm pack --dry-run"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cli",
"deploy",
"static-site",
"netlify",
"vercel",
"cloudflare",
"s3",
"hosting",
"preview",
"rollback"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MR-1124/deploy-cli.git"
},
"author": "deploy-cli contributors",
"dependencies": {
"hash-wasm": "^4.12.0"
}
}