showpane 0.0.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.
Files changed (2) hide show
  1. package/index.js +3 -0
  2. package/package.json +16 -0
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log("showpane v0.0.1 — full installer coming soon.");
3
+ console.log("For now: git clone https://github.com/twillcocks/showpane.git && cd showpane && ./setup");
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "showpane",
3
+ "version": "0.0.1",
4
+ "description": "Open-source client portals. Generate professional client portals in minutes using Claude Code.",
5
+ "bin": {
6
+ "showpane": "./index.js"
7
+ },
8
+ "keywords": ["client-portal", "claude-code", "ai", "open-source"],
9
+ "author": "twillcocks",
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/twillcocks/showpane"
14
+ },
15
+ "homepage": "https://showpane.com"
16
+ }