omerozdemir 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.

Potentially problematic release.


This version of omerozdemir might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +32 -0
  2. package/package.json +15 -0
package/index.js ADDED
@@ -0,0 +1,32 @@
1
+ #!/usr/bin/env node
2
+ import chalk from "chalk";
3
+ import boxen from "boxen";
4
+ import gradient from "gradient-string";
5
+
6
+ // Gradient ile renk geçişi
7
+ const title = gradient.pastel("Ömer Özdemir");
8
+ const subtitle = chalk.bold.cyan("💻 Full Stack Developer");
9
+ const website = chalk.green("🌐 omerozdemir.tr");
10
+ const email = chalk.yellow("📧 info@omerozdemir.tr");
11
+ const github = chalk.magenta("🐙 github.com/omerozdemiris");
12
+
13
+ // Boxen ile çerçeve
14
+ const card = boxen(
15
+ `
16
+ ${title}
17
+
18
+ ${subtitle}
19
+ ${website}
20
+ ${email}
21
+ ${github}
22
+ `,
23
+ {
24
+ padding: 1,
25
+ margin: 1,
26
+ borderStyle: "double",
27
+ borderColor: "cyan",
28
+ backgroundColor: "#1e1e1e",
29
+ }
30
+ );
31
+
32
+ console.log(card);
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "omerozdemir",
3
+ "version": "1.0.0",
4
+ "bin": {
5
+ "omerozdemir": "./index.js"
6
+ },
7
+ "description": "",
8
+ "main": "index.js",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "keywords": [],
13
+ "author": "",
14
+ "license": "ISC"
15
+ }