minhyuk 1.0.0 → 1.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/bin/cli.js +4 -0
- package/lib/data.js +9 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -100,7 +100,11 @@ function showCareer() {
|
|
|
100
100
|
function showProjects() {
|
|
101
101
|
heading("Projects");
|
|
102
102
|
data.projects.forEach((p) => {
|
|
103
|
+
const status = p.active
|
|
104
|
+
? c.green("● 서비스 중")
|
|
105
|
+
: c.dim("○ 서비스 종료");
|
|
103
106
|
out(` ${c.bold(accent(p.title))} ${c.dim("—")} ${c.white(p.desc)}`);
|
|
107
|
+
out(` ${c.dim(p.period)} ${c.dim("·")} ${status}`);
|
|
104
108
|
out(` ${c.dim(p.tech)}`);
|
|
105
109
|
out(` ${c.cyan(c.underline(p.url))}`);
|
|
106
110
|
out("");
|
package/lib/data.js
CHANGED
|
@@ -95,30 +95,38 @@ module.exports = {
|
|
|
95
95
|
},
|
|
96
96
|
],
|
|
97
97
|
|
|
98
|
-
// 대표 프로젝트
|
|
98
|
+
// 대표 프로젝트 (active: 현재 서비스 운영 여부)
|
|
99
99
|
projects: [
|
|
100
100
|
{
|
|
101
101
|
title: "사물의 의회",
|
|
102
102
|
desc: "탈인간중심주의 환경 컨퍼런스 플랫폼 (외주)",
|
|
103
103
|
tech: "Next.js 15 · TypeScript · Firebase",
|
|
104
|
+
period: "2025.03 – 2025.11",
|
|
105
|
+
active: true,
|
|
104
106
|
url: "https://www.samulparliament.com/",
|
|
105
107
|
},
|
|
106
108
|
{
|
|
107
109
|
title: "Greenie",
|
|
108
110
|
desc: "AI 감정 코치 — 카카오톡 대화 감정 분석 서비스",
|
|
109
111
|
tech: "Next.js · Supabase · OpenAI GPT",
|
|
112
|
+
period: "2025.06",
|
|
113
|
+
active: false,
|
|
110
114
|
url: "https://green-katalk-feel.vercel.app/",
|
|
111
115
|
},
|
|
112
116
|
{
|
|
113
117
|
title: "MIC GOLF",
|
|
114
118
|
desc: "골프 브랜드 쇼핑몰 (기업 협업, 팀 리더)",
|
|
115
119
|
tech: "React · TypeScript · Zustand · TanStack Query",
|
|
120
|
+
period: "2024.11 – 2024.12",
|
|
121
|
+
active: false,
|
|
116
122
|
url: "https://github.com/MICGolf/frontend",
|
|
117
123
|
},
|
|
118
124
|
{
|
|
119
125
|
title: "VITA",
|
|
120
126
|
desc: "실시간 게임 메이트 매칭 (WebSocket · 토스페이먼츠)",
|
|
121
127
|
tech: "React · TypeScript · WebSocket · OAuth 2.0",
|
|
128
|
+
period: "2024.10 – 2024.11",
|
|
129
|
+
active: false,
|
|
122
130
|
url: "https://github.com/oz-main-project-team-02/vita-gamemate-fe",
|
|
123
131
|
},
|
|
124
132
|
],
|