diff --git a/packages/linejs/README.md b/packages/linejs/README.md
index e6343f7..5393f62 100644
--- a/packages/linejs/README.md
+++ b/packages/linejs/README.md
@@ -1,87 +1,149 @@
# LINEJS
-[](https://jsr.io/@evex/linejs)
-[](https://jsr.io/@evex/linejs)
-[](https://jsr.io/@evex)
-\
-[](https://discord.gg/evex)
-
-
-
-
-
- LINEJS is a JavaScript library for creating a LINE SelfBot.
+> A powerful and modular JavaScript library for creating LINE SelfBots across
+> Node.js, Deno, and Bun. https://linejs.evex.land/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
---
-##### â Question: Join our [Discord community](https://discord.gg/evex)
+## âšī¸ Information
-##### đ Documentation: [Check out the full documentation](https://linejs.evex.land)
+- â Question: Join our [Discord community](https://discord.gg/evex)
+- đ Documentation: [Check out the full documentation](https://linejs.evex.land)
+- đ¤ AI Generated Documentation:
+ [DeepWiki - LINEJS](https://deepwiki.com/evex-dev/linejs)
-##### đ¤ AI Generated Documentation: [DeepWiki - LINEJS](https://deepwiki.com/evex-dev/linejs)
+## ⨠Features
+
+- đ LINE SelfBot functionality
+- đ Cross-runtime support: Node.js, Deno, Bun
+- đĄ TypeScript-first with official typings
+- đ§Š Modular packages for full control
---
-## Installation
+## đĻ Installation
-Supports all runtimes (Node.js, Deno, and Bun) and Typescript.
+Supports **Node.js**, **Deno**, **Bun**, and **TypeScript** out of the box.
-```llvm
+```sh
+# Node.js
npx jsr add @evex/linejs
+
+# Bun
bunx --bun jsr add @evex/linejs
+
+# Deno
deno add @evex/linejs
```
-You can use `git clone` to download the latest development version and use it in Deno.
+Want to test the development version?
-```llvm
+```sh
git clone https://github.com/evex-dev/linejs.git
cd linejs
touch main.js
deno run main.js
```
-##### Documentation is [https://linejs.evex.land](https://linejs.evex.land/)
-## Browser Support
+đ Full documentation: [https://linejs.evex.land](https://linejs.evex.land)
-For now, please use "https://esm.sh/jsr/@evex/linejs".
+---
-Example is [here](./example/browser).
+## đ Browser Support
-## LINEJS Types
+Use the following import for browser environments:
-Please see [@evex/linejs-types](https://jsr.io/@evex/linejs-types).\
-In short, TypeScript types and enums (such as ReactionType (0, 1, 2, 3),
-MessageType, etc.) are provided.
+```ts
+import { Client } from "https://esm.sh/jsr/@evex/linejs";
+```
-## Provided Packages
+See the [browser example](../../example/browser/) for more details.
-- client - (@evex/linejs) or (@evex/linejs/client)
- - Client - LINE SelfBot Client
-- base - (@evex/linejs/base)
- - BaseClient - LINE SelfBot API Client
-- thrift - (@evex/linejs/thrift)
- - Thrift - Thrift read/write
-- storage - (@evex/linejs/storage)
- - BaseStorage - LINE Client Storage Type
- - MemoryStorage - LINE Client Memory Storage
- - FileStorage - LINE Client File Storage
-- types - (@evex/linejs-types)
- - All Types for LINE
+---
-## Authors
+## đ Types
-- Owner & Developer: [Piloking](https://github.com/piloking)
-- Developer: [EdamAme-x](https://github.com/EdamAme-x)
-- Developer: [MocA-Love](https://github.com/MocA-Love)
-- Developer: [Hafusun](https://github.com/hafusun)
+TypeScript types and enums like `ReactionType`, `MessageType`, etc., are
+available in:
-## References
+đ [`@evex/linejs-types`](https://jsr.io/@evex/linejs-types)
-- [DeachSword/CHRLINE](https://github.com/DeachSword/CHRLINE)
+---
-- [DeachSword/CHRLINE-Thrift](https://github.com/DeachSword/CHRLINE-Thrift/)
+## đ§Š Provided Packages
+
+| Package | Description |
+| ---------------------- | ------------------------------------- |
+| `@evex/linejs` | LINE SelfBot Client |
+| `@evex/linejs/base` | Base LINE API Client |
+| `@evex/linejs/thrift` | Thrift serializer/deserializer |
+| `@evex/linejs/storage` | Memory & File-based storage for LINE |
+| `@evex/linejs-types` | Complete TypeScript typings and enums |
+
+---
-- [WEDeach/CHRLINE-Patch](https://github.com/WEDeach/CHRLINE-Patch)
+## đ§ Learn More
+
+- đ¤ AI Documentation: [DeepWiki - LINEJS](https://deepwiki.com/evex-dev/linejs)
+- â Questions? [Join our Discord](https://discord.gg/evex)
+
+---
+
+## đ¨âđģ Authors
+
+- **Owner & Lead Dev**: [Piloking](https://github.com/piloking)
+- **Core Developers**:
+ - [EdamAme-x](https://github.com/EdamAme-x)
+ - [MocA-Love](https://github.com/MocA-Love)
+ - [Hafusun](https://github.com/hafusun)
+
+---
+
+## đ References & Inspirations
+
+- [DeachSword/CHRLINE](https://github.com/DeachSword/CHRLINE)
+- [CHRLINE-Thrift](https://github.com/DeachSword/CHRLINE-Thrift/)
+- [CHRLINE-Patch](https://github.com/WEDeach/CHRLINE-Patch)
+- [@discordjs/collection](https://www.npmjs.com/package/@discordjs/collection)
+
+---
-- [discordjs/collection](https://www.npmjs.com/package/@discordjs/collection)
+> Built with â¤ī¸ by the Evex team