Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# core-kit
# kr-corekit

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

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

```bash
npm install core-kit
npm install kr-corekit
# or
pnpm add core-kit
pnpm add kr-corekit
# or
yarn add core-kit
yarn add kr-corekit
```

## Usage
Expand All @@ -30,7 +30,7 @@ import {
numberUtil,
validationUtil,
commonUtil,
} from "core-kit";
} from "kr-corekit";

// String utilities
const escaped = stringUtil.escapeHtml("<div>Hello</div>");
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core-kit",
"name": "kr-corekit",
"version": "0.0.1",
"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.",
"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.",
"keywords": [
"javascript",
"typescript",
Expand All @@ -15,19 +15,19 @@
"array-utils",
"object-utils",
"functional",
"core-kit",
"kr-corekit",
"corekit",
"esm",
"cjs"
],
"license": "MIT",
"type": "module",
"main": "dist/bundle/core-kit.js",
"main": "dist/bundle/kr-corekit.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/bundle/core-kit.cjs",
"import": "./dist/bundle/core-kit.js"
"require": "./dist/bundle/kr-corekit.cjs",
"import": "./dist/bundle/kr-corekit.js"
}
},
"scripts": {
Expand All @@ -38,12 +38,12 @@
},
"repository": {
"type": "git",
"url": "https://github.com/klmhyeonwoo/core-kit"
"url": "https://github.com/klmhyeonwoo/kr-corekit"
},
"bugs": {
"url": "https://github.com/klmhyeonwoo/core-kit/issues"
"url": "https://github.com/klmhyeonwoo/kr-corekit/issues"
},
"homepage": "https://github.com/klmhyeonwoo/core-kit#readme",
"homepage": "https://github.com/klmhyeonwoo/kr-corekit#readme",
"devDependencies": {
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^3.2.4",
Expand Down
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export default defineConfig({
outDir: "dist/bundle",
lib: {
entry: "package/index.ts",
name: "core-kit",
fileName: "core-kit",
name: "kr-corekit",
fileName: "kr-corekit",
},
},
});