drops-cli 0.1.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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/drop.mjs +3 -0
  3. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # drops-cli
2
+
3
+ The `drop` command — share anything as a branded, password-protected, zero-knowledge link on your own
4
+ domain, in one step.
5
+
6
+ ```bash
7
+ npx drops-cli report.html --managed # zero-setup: publish to the managed tier (no account)
8
+ npx drops-cli report.html # your own domain (after `drop deploy`)
9
+ ```
10
+
11
+ Open-source · self-hosted · MIT. Site & docs: https://drops.maxtechera.dev
package/drop.mjs ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ // `npx drops-cli <file> --managed` → the drop CLI from the drops-mcp package.
3
+ import "drops-mcp/drop.mjs";
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "drops-cli",
3
+ "version": "0.1.0",
4
+ "description": "Share anything as a branded, password-protected, zero-knowledge link on your own domain — one command, from any terminal or AI agent. Open-source, self-hosted, or zero-setup managed.",
5
+ "type": "module",
6
+ "bin": { "drop": "./drop.mjs" },
7
+ "files": ["drop.mjs"],
8
+ "keywords": ["cli", "share", "artifacts", "ai-agents", "claude", "zero-knowledge", "self-hosted"],
9
+ "repository": { "type": "git", "url": "https://github.com/maxtechera/drops-share" },
10
+ "homepage": "https://drops.maxtechera.dev",
11
+ "author": "Max Techera (https://maxtechera.dev)",
12
+ "license": "MIT",
13
+ "engines": { "node": ">=18" },
14
+ "dependencies": { "drops-mcp": "^0.1.2" }
15
+ }