noslopui 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.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # noslopui
2
+
3
+ Connect your coding agent to [noslopUI](https://noslopui.com), a catalog of hand-crafted UI components and design systems.
4
+
5
+ The one-command installer (`npx noslopui init`) is in progress. Until it ships, see [noslopui.com/mcp](https://noslopui.com/mcp) for manual setup.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log('The noslopUI installer is coming soon.');
3
+ console.log('Until then, set up by hand: https://noslopui.com/mcp');
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "noslopui",
3
+ "version": "0.0.1",
4
+ "description": "Connect your coding agent to noslopUI's hand-crafted UI catalog. Installer coming soon.",
5
+ "homepage": "https://noslopui.com/mcp",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "noslopui": "bin/noslopui.js"
9
+ },
10
+ "files": [
11
+ "bin"
12
+ ],
13
+ "engines": {
14
+ "node": ">=18"
15
+ },
16
+ "keywords": [
17
+ "noslopui",
18
+ "mcp",
19
+ "ui",
20
+ "design-system",
21
+ "claude-code",
22
+ "cursor",
23
+ "codex"
24
+ ]
25
+ }