aibekjumabek 1.0.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/card.js +37 -0
  2. package/package.json +13 -0
package/card.js ADDED
@@ -0,0 +1,37 @@
1
+ #!/usr/bin/env node
2
+
3
+ import chalk from "chalk";
4
+ import boxen from "boxen";
5
+
6
+ const green = chalk.hex("#39FF14");
7
+ const dim = chalk.hex("#d6d6d6").dim;
8
+ const white = chalk.hex("#d6d6d6");
9
+ const divider = dim("─".repeat(40));
10
+
11
+ const card = boxen(
12
+ [
13
+ `${green.bold("Aibek Jumabek")} ${green("@codercraftz")}`,
14
+ white("Software Engineer & Content Creator"),
15
+ "",
16
+ divider,
17
+ "",
18
+ `${dim("Bluesky")} ${white("bsky.app/profile/codercraftz.com")}`,
19
+ `${dim("Github")} ${white("github.com/codercraftz")}`,
20
+ `${dim("Email")} ${white("aibek@codercraftz.com")}`,
21
+ `${dim("Web")} ${white("codercraftz.com")}`,
22
+ "",
23
+ divider,
24
+ "",
25
+ `${white("Run ")}${green("npx aibekjumabek")}${white(" anytime to see this card")}`,
26
+ ].join("\n"),
27
+ {
28
+ padding: 1,
29
+ margin: 1,
30
+ borderStyle: "single",
31
+ borderColor: "#39FF14",
32
+ title: green("$ npx aibekjumabek"),
33
+ titleAlignment: "left",
34
+ }
35
+ );
36
+
37
+ console.log(card);
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "aibekjumabek",
3
+ "version": "1.0.0",
4
+ "description": "Aibek Jumabek's npx card",
5
+ "type": "module",
6
+ "bin": {
7
+ "aibekjumabek": "card.js"
8
+ },
9
+ "dependencies": {
10
+ "boxen": "^8.0.1",
11
+ "chalk": "^5.4.1"
12
+ }
13
+ }