@gaonjs/vue 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/vue
2
+
3
+ Gaon 프론트엔드 어댑터 첫 구현 — Vue 3 + Inertia 방식 브리지, 타입 자동 전파, SSR.
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/vue — Gaon 프론트엔드 어댑터 첫 구현 (Vue 3 · Inertia 브리지 · SSR).
3
+ *
4
+ * 구현은 웹/데이터 조각 이후 마일스톤. 현재는 개발 상태만 노출하는 스텁이다.
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/vue",
3
+ "version": "0.1.0",
4
+ "description": "Gaon 프론트엔드 어댑터: Vue 3 · Inertia 브리지 · 타입 전파 · SSR (구현 예정)",
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
+ }