praxys-ui 0.1.0 → 0.2.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.
- package/dist/index.js +11 -1
- package/package.json +13 -4
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import prompts from "prompts";
|
|
|
6
6
|
import { existsSync, mkdirSync, writeFileSync } from "fs";
|
|
7
7
|
import { join } from "path";
|
|
8
8
|
import { execSync } from "child_process";
|
|
9
|
-
const VERSION = "0.
|
|
9
|
+
const VERSION = "0.2.0";
|
|
10
10
|
// ─── Utility file contents ──────────────────────────────
|
|
11
11
|
const UTILS_CONTENT = `import { clsx, type ClassValue } from "clsx";
|
|
12
12
|
import { twMerge } from "tailwind-merge";
|
|
@@ -18,9 +18,11 @@ export function cn(...inputs: ClassValue[]) {
|
|
|
18
18
|
// ─── Component registry (slug → raw GitHub URL) ─────────
|
|
19
19
|
const COMPONENTS_BASE_URL = "https://raw.githubusercontent.com/sushanttverma/Praxys-UI/main/app/components/ui";
|
|
20
20
|
const COMPONENT_LIST = [
|
|
21
|
+
"accordion",
|
|
21
22
|
"animated-button",
|
|
22
23
|
"animated-hero",
|
|
23
24
|
"animated-number",
|
|
25
|
+
"animated-tabs",
|
|
24
26
|
"creepy-button",
|
|
25
27
|
"displacement-text",
|
|
26
28
|
"expandable-bento-grid",
|
|
@@ -29,19 +31,27 @@ const COMPONENT_LIST = [
|
|
|
29
31
|
"folder-preview",
|
|
30
32
|
"glass-dock",
|
|
31
33
|
"glow-border-card",
|
|
34
|
+
"gradient-mesh",
|
|
32
35
|
"interactive-book",
|
|
33
36
|
"light-lines",
|
|
34
37
|
"line-hover-link",
|
|
35
38
|
"liquid-metal",
|
|
36
39
|
"liquid-ocean",
|
|
37
40
|
"logo-slider",
|
|
41
|
+
"magnetic-cursor",
|
|
38
42
|
"masked-avatars",
|
|
43
|
+
"morphing-text",
|
|
44
|
+
"parallax-scroll",
|
|
39
45
|
"perspective-grid",
|
|
40
46
|
"reveal-loader",
|
|
47
|
+
"skeleton-loader",
|
|
41
48
|
"social-flip-button",
|
|
49
|
+
"spotlight-card",
|
|
42
50
|
"spotlight-navbar",
|
|
43
51
|
"staggered-grid",
|
|
44
52
|
"testimonials-card",
|
|
53
|
+
"toast-notification",
|
|
54
|
+
"typewriter-text",
|
|
45
55
|
];
|
|
46
56
|
// ─── Helpers ─────────────────────────────────────────────
|
|
47
57
|
function detectPackageManager() {
|
package/package.json
CHANGED
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "praxys-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for scaffolding Praxys UI components into your project",
|
|
6
6
|
"bin": {
|
|
7
|
-
"praxys-ui": "
|
|
7
|
+
"praxys-ui": "dist/index.js"
|
|
8
8
|
},
|
|
9
|
-
"files": [
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
10
12
|
"scripts": {
|
|
11
13
|
"build": "tsc",
|
|
12
14
|
"dev": "ts-node src/index.ts"
|
|
13
15
|
},
|
|
14
|
-
"keywords": [
|
|
16
|
+
"keywords": [
|
|
17
|
+
"react",
|
|
18
|
+
"components",
|
|
19
|
+
"ui",
|
|
20
|
+
"cli",
|
|
21
|
+
"tailwind",
|
|
22
|
+
"framer-motion"
|
|
23
|
+
],
|
|
15
24
|
"author": "Sushant Verma",
|
|
16
25
|
"license": "MIT",
|
|
17
26
|
"dependencies": {
|