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 @@
# corekit
# core-kit

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 corekit
npm install core-kit
# or
pnpm add corekit
pnpm add core-kit
# or
yarn add corekit
yarn add core-kit
```

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

// String utilities
const escaped = stringUtil.escapeHtml("<div>Hello</div>");
Expand Down
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "corekit",
"name": "core-kit",
"version": "0.0.1",
"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.",
"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.",
"keywords": [
"javascript",
"typescript",
Expand All @@ -15,18 +15,19 @@
"array-utils",
"object-utils",
"functional",
"core-kit",
"corekit",
Comment thread
klmhyeonwoo marked this conversation as resolved.
"esm",
"cjs"
],
"license": "MIT",
"type": "module",
"main": "dist/bundle/corekit.js",
"main": "dist/bundle/core-kit.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/bundle/corekit.cjs",
"import": "./dist/bundle/corekit.js"
"require": "./dist/bundle/core-kit.cjs",
"import": "./dist/bundle/core-kit.js"
}
},
"scripts": {
Expand All @@ -37,12 +38,12 @@
},
"repository": {
"type": "git",
"url": "https://github.com/klmhyeonwoo/corekit"
"url": "https://github.com/klmhyeonwoo/core-kit"
},
"bugs": {
"url": "https://github.com/klmhyeonwoo/corekit/issues"
"url": "https://github.com/klmhyeonwoo/core-kit/issues"
},
"homepage": "https://github.com/klmhyeonwoo/corekit#readme",
"homepage": "https://github.com/klmhyeonwoo/core-kit#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: "corekit",
fileName: "corekit",
name: "core-kit",
fileName: "core-kit",
},
},
});