Skip to content

Commit 0970abd

Browse files
authored
Merge pull request #11 from klmhyeonwoo/8
fix: package name
2 parents 19ca5d5 + 0a68669 commit 0970abd

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# corekit
1+
# core-kit
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 corekit
16+
npm install core-kit
1717
# or
18-
pnpm add corekit
18+
pnpm add core-kit
1919
# or
20-
yarn add corekit
20+
yarn add core-kit
2121
```
2222

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

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

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "corekit",
2+
"name": "core-kit",
33
"version": "0.0.1",
4-
"description": "A lightweight and modern utility toolkit for JavaScript and TypeScript. CoreKit 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. core-kit provides essential functions for strings, arrays, objects, and more, designed for simplicity and productivity.",
55
"keywords": [
66
"javascript",
77
"typescript",
@@ -15,18 +15,19 @@
1515
"array-utils",
1616
"object-utils",
1717
"functional",
18+
"core-kit",
1819
"corekit",
1920
"esm",
2021
"cjs"
2122
],
2223
"license": "MIT",
2324
"type": "module",
24-
"main": "dist/bundle/corekit.js",
25+
"main": "dist/bundle/core-kit.js",
2526
"exports": {
2627
".": {
2728
"types": "./dist/types/index.d.ts",
28-
"require": "./dist/bundle/corekit.cjs",
29-
"import": "./dist/bundle/corekit.js"
29+
"require": "./dist/bundle/core-kit.cjs",
30+
"import": "./dist/bundle/core-kit.js"
3031
}
3132
},
3233
"scripts": {
@@ -37,12 +38,12 @@
3738
},
3839
"repository": {
3940
"type": "git",
40-
"url": "https://github.com/klmhyeonwoo/corekit"
41+
"url": "https://github.com/klmhyeonwoo/core-kit"
4142
},
4243
"bugs": {
43-
"url": "https://github.com/klmhyeonwoo/corekit/issues"
44+
"url": "https://github.com/klmhyeonwoo/core-kit/issues"
4445
},
45-
"homepage": "https://github.com/klmhyeonwoo/corekit#readme",
46+
"homepage": "https://github.com/klmhyeonwoo/core-kit#readme",
4647
"devDependencies": {
4748
"@types/node": "^24.3.0",
4849
"@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: "corekit",
17-
fileName: "corekit",
16+
name: "core-kit",
17+
fileName: "core-kit",
1818
},
1919
},
2020
});

0 commit comments

Comments
 (0)