From ed592cd08deebf930e9f77df01cef9d4e733b373 Mon Sep 17 00:00:00 2001 From: "abdulelhakim68@gmail.com" Date: Tue, 23 Jan 2024 15:35:45 +0700 Subject: [PATCH] update readme - adding description --- README.md | 30 +++++++++++++++--------------- package.json | 4 ++-- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index e8f2a98..c374c12 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# packageName +# typescript-adt [![npm version][npm-version-src]][npm-version-href] [![npm downloads][npm-downloads-src]][npm-downloads-href] [![bundle][bundle-src]][bundle-href] [![Codecov][codecov-src]][codecov-href] -This is my package description. +Experimental abstraction of data structure utils for javascript (browsser/nodejs) ## Usage @@ -13,26 +13,26 @@ Install package: ```sh # npm -npm install packageName +npm install typescript-adt # yarn -yarn add packageName +yarn add typescript-adt # pnpm -pnpm install packageName +pnpm install typescript-adt # bun -bun install packageName +bun install typescript-adt ``` Import: ```js // ESM -import {} from "packageName"; +import {} from "typescript-adt"; // CommonJS -const {} = require("packageName"); +const {} = require("typescript-adt"); ``` ## Development @@ -51,11 +51,11 @@ Published under [MIT License](./LICENSE). -[npm-version-src]: https://img.shields.io/npm/v/packageName?style=flat&colorA=18181B&colorB=F0DB4F -[npm-version-href]: https://npmjs.com/package/packageName -[npm-downloads-src]: https://img.shields.io/npm/dm/packageName?style=flat&colorA=18181B&colorB=F0DB4F -[npm-downloads-href]: https://npmjs.com/package/packageName -[codecov-src]: https://img.shields.io/codecov/c/gh/unjs/packageName/main?style=flat&colorA=18181B&colorB=F0DB4F +[npm-version-src]: https://img.shields.io/npm/v/typescript-adt?style=flat&colorA=18181B&colorB=F0DB4F +[npm-version-href]: https://npmjs.com/package/typescript-adt +[npm-downloads-src]: https://img.shields.io/npm/dm/typescript-adt?style=flat&colorA=18181B&colorB=F0DB4F +[npm-downloads-href]: https://npmjs.com/package/typescript-adt +[codecov-src]: https://img.shields.io/codecov/c/gh/unjs/typescript-adt/main?style=flat&colorA=18181B&colorB=F0DB4F [codecov-href]: https://app.codecov.io/github/elhakimdev/typescript-abstract-data-type -[bundle-src]: https://img.shields.io/bundlephobia/minzip/packageName?style=flat&colorA=18181B&colorB=F0DB4F -[bundle-href]: https://bundlephobia.com/result?p=packageName +[bundle-src]: https://img.shields.io/bundlephobia/minzip/typescript-adt?style=flat&colorA=18181B&colorB=F0DB4F +[bundle-href]: https://bundlephobia.com/result?p=typescript-adt diff --git a/package.json b/package.json index 737496d..3d9fbb6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "dsa-typescript", + "name": "typescript-adt", "version": "0.0.2", - "description": "", + "description": "Experimental abstraction of data structure utils for javascript", "repository": "https://github.com/elhakimdev/typescript-abstract-data-type", "license": "MIT", "sideEffects": false,