@gaonjs/web 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 ADDED
@@ -0,0 +1,9 @@
1
+ # @gaonjs/web
2
+
3
+ Gaon 웹 레이어 — Fastify 통합, 파일 기반 라우팅, 컨트롤러, 보안 기본값(CORS·rate limit·CSRF).
4
+
5
+ > ⚠️ **개발 중 (v0.1.0 스텁).** 구현은 로드맵 이후 마일스톤에서 진행됩니다.
6
+
7
+ 개발자는 이 패키지를 직접 설치하지 않습니다 — [`gaon`](https://www.npmjs.com/package/gaon) 하나만 설치하세요.
8
+
9
+ - 홈페이지 / 문서: https://gaonjs.dev
@@ -0,0 +1,2 @@
1
+ export declare const version = "0.1.0";
2
+ export declare const status: "planned";
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @gaonjs/web — Gaon 웹 레이어 (Fastify 통합·라우팅·보안 기본값).
3
+ *
4
+ * 구현은 로드맵 M2 이후. 현재는 개발 상태만 노출하는 스텁이다.
5
+ */
6
+ import { VERSION } from "@gaonjs/core";
7
+ export const version = VERSION;
8
+ export const status = "planned";
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@gaonjs/web",
3
+ "version": "0.1.0",
4
+ "description": "Gaon 웹 레이어: Fastify 통합·파일 기반 라우팅·보안 기본값 (구현 예정)",
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
+ "dependencies": {
27
+ "@gaonjs/core": "0.1.0"
28
+ },
29
+ "scripts": {
30
+ "build": "node ../../node_modules/typescript/bin/tsc -p tsconfig.json"
31
+ }
32
+ }