lee-jongwoo 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/index.js +33 -0
  2. package/package.json +27 -0
package/index.js ADDED
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { styleText } from "node:util";
4
+ import boxen from "boxen";
5
+
6
+ const name = styleText(["bold", "cyan"], "Lee Jongwoo");
7
+ const title = styleText("dim", "Software Engineer");
8
+ const label = (s) => styleText("yellow", s);
9
+ const val = (s) => styleText("white", s);
10
+ const link = (s) => styleText(["blue", "underline"], s);
11
+
12
+ const content = [
13
+ `${name}`,
14
+ `${title} @ ${val("Kakao Games")}`,
15
+ "",
16
+ `${label("Languages")} : ${val("Java, Python, JavaScript, TypeScript")}`,
17
+ ` ${val("HTML, CSS")}`,
18
+ `${label("Frameworks")} : ${val("Spring Boot, Vue, Nuxt")}`,
19
+ `${label("Tools")} : ${val("IntelliJ, Neovim, AWS, Vercel")}`,
20
+ ` ${val("Claude Code, Codex")}`,
21
+ "",
22
+ `${label("Email")} : ${val("jongwoo328@gmail.com")}`,
23
+ `${label("GitHub")} : ${link("https://github.com/jongwoo328")}`,
24
+ ].join("\n");
25
+
26
+ console.log(
27
+ boxen(content, {
28
+ padding: 1,
29
+ borderStyle: "double",
30
+ borderColor: "cyan",
31
+ width: 61,
32
+ })
33
+ );
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "lee-jongwoo",
3
+ "version": "1.0.0",
4
+ "description": "Lee Jongwoo's developer profile — run npx lee-jongwoo to see it",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "bin": "./index.js",
8
+ "scripts": {
9
+ "test": "echo \"Error: no test specified\" && exit 1"
10
+ },
11
+ "engines": {
12
+ "node": ">=20.18.0"
13
+ },
14
+ "files": ["index.js"],
15
+ "keywords": [],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/jongwoo328/lee-jongwoo"
19
+ },
20
+ "homepage": "https://github.com/jongwoo328/lee-jongwoo",
21
+ "author": "Lee Jongwoo <jongwoo328@gmail.com> (https://github.com/jongwoo328)",
22
+ "license": "ISC",
23
+ "packageManager": "pnpm@10.33.0",
24
+ "dependencies": {
25
+ "boxen": "^8.0.1"
26
+ }
27
+ }