drops-install 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 (2) hide show
  1. package/index.mjs +4 -0
  2. package/package.json +15 -0
package/index.mjs ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // Thin wrapper so `npx drops-install` works: runs the installer shipped in drops-mcp,
3
+ // which detects it's running from node_modules and wires agents to `npx -y drops-mcp`.
4
+ import "drops-mcp/install.mjs";
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "drops-install",
3
+ "version": "0.1.0",
4
+ "description": "One command to wire the drops MCP server (open-source artifact sharing) into your AI agents — Claude Code, Codex, Cursor, OpenCode.",
5
+ "type": "module",
6
+ "bin": { "drops-install": "./index.mjs" },
7
+ "files": ["index.mjs"],
8
+ "keywords": ["mcp", "ai-agents", "claude-code", "installer", "drops"],
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.0" }
15
+ }