@gaonjs/core 0.1.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/README.md +10 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +17 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @gaonjs/core
|
|
2
|
+
|
|
3
|
+
Gaon 프레임웍의 커널 패키지 — 설정·생명주기·플러그인 시스템·doctor.
|
|
4
|
+
|
|
5
|
+
> ⚠️ **개발 중 (v0.1.0 스텁).** v1 커널 구현은 로드맵 **M2** 이후입니다.
|
|
6
|
+
> 지금은 로드맵 메타데이터만 제공합니다.
|
|
7
|
+
|
|
8
|
+
개발자는 이 패키지를 직접 설치하지 않습니다 — [`gaon`](https://www.npmjs.com/package/gaon) 하나만 설치하세요.
|
|
9
|
+
|
|
10
|
+
- 홈페이지 / 문서: https://gaonjs.dev
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @gaonjs/core — Gaon 프레임웍의 로드맵·메타데이터 단일 원천.
|
|
3
|
+
*
|
|
4
|
+
* v1 커널(설정·생명주기·플러그인·doctor) 구현은 로드맵 M2 이후.
|
|
5
|
+
* M1(현재)에서는 스텁 CLI가 소비하는 로드맵 데이터만 제공한다.
|
|
6
|
+
*/
|
|
7
|
+
export declare const VERSION = "0.1.0";
|
|
8
|
+
export declare const HOMEPAGE = "https://gaonjs.dev";
|
|
9
|
+
export type MilestoneStatus = "in-progress" | "planned";
|
|
10
|
+
export interface Milestone {
|
|
11
|
+
readonly id: string;
|
|
12
|
+
readonly title: string;
|
|
13
|
+
readonly status: MilestoneStatus;
|
|
14
|
+
}
|
|
15
|
+
/** 설계 문서 §13.5 / M1 착수 지시의 6개 마일스톤. */
|
|
16
|
+
export declare const MILESTONES: readonly Milestone[];
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @gaonjs/core — Gaon 프레임웍의 로드맵·메타데이터 단일 원천.
|
|
3
|
+
*
|
|
4
|
+
* v1 커널(설정·생명주기·플러그인·doctor) 구현은 로드맵 M2 이후.
|
|
5
|
+
* M1(현재)에서는 스텁 CLI가 소비하는 로드맵 데이터만 제공한다.
|
|
6
|
+
*/
|
|
7
|
+
export const VERSION = "0.1.0";
|
|
8
|
+
export const HOMEPAGE = "https://gaonjs.dev";
|
|
9
|
+
/** 설계 문서 §13.5 / M1 착수 지시의 6개 마일스톤. */
|
|
10
|
+
export const MILESTONES = [
|
|
11
|
+
{ id: "M1", title: "모노레포 셋업 + npm 스텁", status: "in-progress" },
|
|
12
|
+
{ id: "M2", title: "@gaonjs/data 세로 조각 (멀티 커넥션 · 실DB 테스트)", status: "planned" },
|
|
13
|
+
{ id: "M3", title: ".gaon 갱신 파이프라인 (워처 → 재생성 → tsserver)", status: "planned" },
|
|
14
|
+
{ id: "M4", title: "render props 깊은 직렬화 매핑 타입 (Rec → SerializedOf)", status: "planned" },
|
|
15
|
+
{ id: "M5", title: "인증 배터리 (세션 + JWT · 앱별 분리)", status: "planned" },
|
|
16
|
+
{ id: "M6", title: "실시간 세로 조각 (채널 → 프레즌스 → gaon hub)", status: "planned" },
|
|
17
|
+
];
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gaonjs/core",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Gaon 커널: 설정·생명주기·플러그인 시스템·doctor (M2+ 구현 예정)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://gaonjs.dev",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=22"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"main": "dist/index.js",
|
|
15
|
+
"types": "dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"default": "./dist/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"README.md"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "node ../../node_modules/typescript/bin/tsc -p tsconfig.json"
|
|
28
|
+
}
|
|
29
|
+
}
|