@zipbul/shared 0.0.1 → 0.0.2
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.ko.md +3 -0
- package/README.md +3 -0
- package/package.json +11 -3
package/README.ko.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
[English](./README.md) | **한국어**
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/@zipbul/shared)
|
|
6
|
+

|
|
7
|
+
|
|
5
8
|
`@zipbul` 툴킷의 공유 라이브러리입니다.
|
|
6
9
|
여러 `@zipbul` 패키지에서 공통으로 사용하는 열거형(enum), 상수, 타입, 유틸리티 등을 제공합니다.
|
|
7
10
|
|
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
**English** | [한국어](./README.ko.md)
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/@zipbul/shared)
|
|
6
|
+

|
|
7
|
+
|
|
5
8
|
Shared library for the `@zipbul` toolkit.
|
|
6
9
|
Provides common definitions — enums, constants, types, and utilities — used across multiple `@zipbul` packages.
|
|
7
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zipbul/shared",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Shared library for the @zipbul toolkit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Junhyung Park (https://github.com/parkrevil)",
|
|
@@ -11,7 +11,13 @@
|
|
|
11
11
|
},
|
|
12
12
|
"bugs": "https://github.com/zipbul/toolkit/issues",
|
|
13
13
|
"homepage": "https://github.com/zipbul/toolkit/tree/main/packages/shared#readme",
|
|
14
|
-
"keywords": [
|
|
14
|
+
"keywords": [
|
|
15
|
+
"enum",
|
|
16
|
+
"constants",
|
|
17
|
+
"shared",
|
|
18
|
+
"typescript",
|
|
19
|
+
"zipbul"
|
|
20
|
+
],
|
|
15
21
|
"engines": {
|
|
16
22
|
"bun": ">=1.0.0"
|
|
17
23
|
},
|
|
@@ -24,7 +30,9 @@
|
|
|
24
30
|
"import": "./dist/index.js"
|
|
25
31
|
}
|
|
26
32
|
},
|
|
27
|
-
"files": [
|
|
33
|
+
"files": [
|
|
34
|
+
"dist"
|
|
35
|
+
],
|
|
28
36
|
"scripts": {
|
|
29
37
|
"build": "bun build index.ts --outdir dist --target bun --format esm --sourcemap=linked && tsc -p tsconfig.build.json"
|
|
30
38
|
}
|