popcn 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/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 popcn
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # popcn
2
+
3
+ A CLI for adding components to your project.
4
+
5
+ ## init
6
+
7
+ Use the `init` command to initialize popcn/ui in your project.
8
+
9
+ ```bash
10
+ npx popcn init
11
+ ```
12
+
13
+ ### Options
14
+
15
+ - `-y, --yes` — Skip confirmation prompts
16
+ - `-d, --defaults` — Use default configuration
17
+ - `-f, --force` — Force overwrite existing files
18
+
19
+ ## add
20
+
21
+ Use the `add` command to add components to your project.
22
+
23
+ ```bash
24
+ npx popcn add button
25
+ npx popcn add card badge avatar
26
+ ```
27
+
28
+ ### Options
29
+
30
+ - `-y, --yes` — Skip confirmation prompts
31
+ - `-o, --overwrite` — Overwrite existing files
32
+ - `-p, --path <path>` — Custom path for components
33
+
34
+ ## list
35
+
36
+ Use the `list` command to list all available components.
37
+
38
+ ```bash
39
+ npx popcn list
40
+ npx popcn list --json
41
+ ```
42
+
43
+ ## Documentation
44
+
45
+ Visit [https://popcnui.com/docs/cli](https://popcnui.com/docs/cli) to view the documentation.
46
+
47
+ ## License
48
+
49
+ Licensed under the [MIT license](https://github.com/popcn/ui/blob/main/LICENSE.md).
@@ -0,0 +1,2 @@
1
+
2
+ export { }