Skip to content

Commit 2d4111d

Browse files
authored
Merge pull request #12 from klmhyeonwoo/feature/util-workspace
fix: package name
2 parents 0970abd + d03940d commit 2d4111d

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# core-kit
1+
# kr-corekit
22

33
A comprehensive collection of TypeScript utility functions for modern web development.
44

@@ -13,11 +13,11 @@ A comprehensive collection of TypeScript utility functions for modern web develo
1313
## Installation
1414

1515
```bash
16-
npm install core-kit
16+
npm install kr-corekit
1717
# or
18-
pnpm add core-kit
18+
pnpm add kr-corekit
1919
# or
20-
yarn add core-kit
20+
yarn add kr-corekit
2121
```
2222

2323
## Usage
@@ -30,7 +30,7 @@ import {
3030
numberUtil,
3131
validationUtil,
3232
commonUtil,
33-
} from "core-kit";
33+
} from "kr-corekit";
3434

3535
// String utilities
3636
const escaped = stringUtil.escapeHtml("<div>Hello</div>");

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "core-kit",
2+
"name": "kr-corekit",
33
"version": "0.0.1",
4-
"description": "A lightweight and modern utility toolkit for JavaScript and TypeScript. core-kit provides essential functions for strings, arrays, objects, and more, designed for simplicity and productivity.",
4+
"description": "A lightweight and modern utility toolkit for JavaScript and TypeScript. kr-corekit provides essential functions for strings, arrays, objects, and more, designed for simplicity and productivity.",
55
"keywords": [
66
"javascript",
77
"typescript",
@@ -15,19 +15,19 @@
1515
"array-utils",
1616
"object-utils",
1717
"functional",
18-
"core-kit",
18+
"kr-corekit",
1919
"corekit",
2020
"esm",
2121
"cjs"
2222
],
2323
"license": "MIT",
2424
"type": "module",
25-
"main": "dist/bundle/core-kit.js",
25+
"main": "dist/bundle/kr-corekit.js",
2626
"exports": {
2727
".": {
2828
"types": "./dist/types/index.d.ts",
29-
"require": "./dist/bundle/core-kit.cjs",
30-
"import": "./dist/bundle/core-kit.js"
29+
"require": "./dist/bundle/kr-corekit.cjs",
30+
"import": "./dist/bundle/kr-corekit.js"
3131
}
3232
},
3333
"scripts": {
@@ -38,12 +38,12 @@
3838
},
3939
"repository": {
4040
"type": "git",
41-
"url": "https://github.com/klmhyeonwoo/core-kit"
41+
"url": "https://github.com/klmhyeonwoo/kr-corekit"
4242
},
4343
"bugs": {
44-
"url": "https://github.com/klmhyeonwoo/core-kit/issues"
44+
"url": "https://github.com/klmhyeonwoo/kr-corekit/issues"
4545
},
46-
"homepage": "https://github.com/klmhyeonwoo/core-kit#readme",
46+
"homepage": "https://github.com/klmhyeonwoo/kr-corekit#readme",
4747
"devDependencies": {
4848
"@types/node": "^24.3.0",
4949
"@vitest/coverage-v8": "^3.2.4",

vite.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export default defineConfig({
1313
outDir: "dist/bundle",
1414
lib: {
1515
entry: "package/index.ts",
16-
name: "core-kit",
17-
fileName: "core-kit",
16+
name: "kr-corekit",
17+
fileName: "kr-corekit",
1818
},
1919
},
2020
});

0 commit comments

Comments
 (0)