@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 +9 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -0
- package/package.json +32 -0
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
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
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
|
+
}
|