shipstatic-cli 2.7.0 → 2.8.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.
- package/LICENSE +1 -1
- package/README.md +18 -3
- package/package.json +3 -3
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
>
|
|
5
5
|
> This is an alias for it, so a guess at the unscoped name doesn't dead-end. **Use it directly** — `npx shipstatic-cli` runs the same binary, `import Ship from 'shipstatic-cli'` resolves to the same module. Nothing to switch to.
|
|
6
6
|
|
|
7
|
-
Deploy
|
|
7
|
+
Deploy static websites, landing pages, and prototypes instantly from the terminal or code.
|
|
8
8
|
|
|
9
9
|
## Deploy
|
|
10
10
|
|
|
@@ -24,7 +24,7 @@ npx shipstatic-cli ./index.html
|
|
|
24
24
|
|
|
25
25
|
> Anonymous deployments are **public** and **expire in 3 days**. The claim URL is how one becomes permanent — surface it to whoever asked for the deploy.
|
|
26
26
|
|
|
27
|
-
## Auth
|
|
27
|
+
## Auth: deploy needs none, everything else does
|
|
28
28
|
|
|
29
29
|
| | |
|
|
30
30
|
|---|---|
|
|
@@ -72,4 +72,19 @@ const result = await new Ship().deploy('./dist');
|
|
|
72
72
|
|
|
73
73
|
## Full documentation
|
|
74
74
|
|
|
75
|
-
Custom domains, API keys, deploy tokens, managing deployments, the complete SDK reference
|
|
75
|
+
Custom domains, API keys, deploy tokens, managing deployments, the complete SDK reference: **[`@shipstatic/ship`](https://www.npmjs.com/package/@shipstatic/ship)**.
|
|
76
|
+
|
|
77
|
+
## Also available
|
|
78
|
+
|
|
79
|
+
| Surface | Reach it |
|
|
80
|
+
|---------|----------|
|
|
81
|
+
| **[MCP](https://mcp.shipstatic.com)** | Drop `https://mcp.shipstatic.com` into any MCP client |
|
|
82
|
+
| **[VS Code](https://marketplace.visualstudio.com/items?itemName=shipstatic.shipstatic)** | Search "ShipStatic" in the Marketplace |
|
|
83
|
+
| **[Gemini CLI](https://github.com/shipstatic/plugin)** | `gemini extensions install https://github.com/shipstatic/plugin` |
|
|
84
|
+
| **[n8n](https://www.npmjs.com/package/n8n-nodes-shipstatic)** | Search "ShipStatic" in n8n's node panel |
|
|
85
|
+
| **[GitHub Action](https://github.com/shipstatic/action)** | `shipstatic/action@v2` |
|
|
86
|
+
| **[Agent Skill](https://www.shipstatic.com/SKILL.md)** | One file, for any skills-aware tool |
|
|
87
|
+
|
|
88
|
+
## License
|
|
89
|
+
|
|
90
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipstatic-cli",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "CLI and SDK for ShipStatic
|
|
3
|
+
"version": "2.8.1",
|
|
4
|
+
"description": "CLI and SDK for ShipStatic. Deploy static websites, landing pages, and prototypes instantly from the terminal or code. The unscoped name for @shipstatic/ship.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shipstatic",
|
|
7
7
|
"static-hosting",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"format": "biome format --write ."
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@shipstatic/ship": "^2.
|
|
69
|
+
"@shipstatic/ship": "^2.8.1"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@arethetypeswrong/cli": "^0.18.5",
|