@gaonjs/async 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/async
|
|
2
|
+
|
|
3
|
+
Gaon 비동기 백본 — NATS JetStream 통합: 잡, 이벤트, 스케줄러, 채널(WebSocket), 허브(프레즌스).
|
|
4
|
+
|
|
5
|
+
> ⚠️ **개발 중 (v0.1.0 스텁).** 실시간 세로 조각은 로드맵 **M6** 대상입니다.
|
|
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/async",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Gaon NATS 통합: 잡·이벤트·스케줄러·채널(ws)·허브(프레즌스) (구현 예정)",
|
|
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
|
+
}
|