diff --git a/README.md b/README.md
index 43e3062a..56f91964 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# rc-pagination
+# @rc-component/pagination
React Pagination Component.
@@ -9,20 +9,16 @@ React Pagination Component.
[![bundle size][bundlephobia-image]][bundlephobia-url]
[![dumi][dumi-image]][dumi-url]
-[npm-image]: http://img.shields.io/npm/v/rc-pagination.svg?style=flat-square
-[npm-url]: http://npmjs.org/package/rc-pagination
-[github-actions-image]: https://github.com/react-component/pagination/workflows/CI/badge.svg
-[github-actions-url]: https://github.com/react-component/pagination/actions
+[npm-image]: http://img.shields.io/npm/v/@rc-component/pagination.svg?style=flat-square
+[npm-url]: http://npmjs.org/package/@rc-component/pagination
+[github-actions-image]: https://github.com/react-component/pagination/actions/workflows/main.yml/badge.svg
+[github-actions-url]: https://github.com/react-component/pagination/actions/workflows/main.yml
[codecov-image]: https://img.shields.io/codecov/c/github/react-component/pagination/master.svg?style=flat-square
[codecov-url]: https://codecov.io/gh/react-component/pagination/branch/master
-[david-url]: https://david-dm.org/react-component/pagination
-[david-image]: https://david-dm.org/react-component/pagination/status.svg?style=flat-square
-[david-dev-url]: https://david-dm.org/react-component/pagination?type=dev
-[david-dev-image]: https://david-dm.org/react-component/pagination/dev-status.svg?style=flat-square
-[download-image]: https://img.shields.io/npm/dm/rc-pagination.svg?style=flat-square
-[download-url]: https://npmjs.org/package/rc-pagination
-[bundlephobia-url]: https://bundlephobia.com/result?p=rc-pagination
-[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/rc-pagination
+[download-image]: https://img.shields.io/npm/dm/@rc-component/pagination.svg?style=flat-square
+[download-url]: https://npmjs.org/package/@rc-component/pagination
+[bundlephobia-url]: https://bundlephobia.com/result?p=@rc-component/pagination
+[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/@rc-component/pagination
[dumi-url]: https://github.com/umijs/dumi
[dumi-image]: https://img.shields.io/badge/docs%20by-dumi-blue?style=flat-square
@@ -40,12 +36,12 @@ Local example: `npm run start` then `http://localhost:9001`
## Install
-[](https://npmjs.org/package/rc-pagination)
+[](https://npmjs.org/package/@rc-component/pagination)
## Usage
```js
-import Pagination from 'rc-pagination';
+import Pagination from '@rc-component/pagination';
ReactDOM.render(, container);
```
@@ -85,4 +81,4 @@ ReactDOM.render(, container);
## License
-rc-pagination is released under the MIT license.
+@rc-component/pagination is released under the MIT license.
diff --git a/docs/examples/utils/commonUtil.tsx b/docs/examples/utils/commonUtil.tsx
index b0de150a..88aa477d 100644
--- a/docs/examples/utils/commonUtil.tsx
+++ b/docs/examples/utils/commonUtil.tsx
@@ -1,5 +1,4 @@
-import type { PaginationProps } from 'rc-pagination';
-import Pagination from '../../../src';
+import Pagination, { type PaginationProps } from '../../../src';
import Select from 'rc-select';
import React from 'react';
diff --git a/now.json b/now.json
deleted file mode 100644
index 541c7071..00000000
--- a/now.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "version": 2,
- "name": "rc-pagination",
- "builds": [
- {
- "src": "package.json",
- "use": "@now/static-build",
- "config": { "distDir": "docs-dist" }
- }
- ]
-}
diff --git a/tsconfig.json b/tsconfig.json
index 197e4633..5a078dd8 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -10,7 +10,7 @@
"paths": {
"@/*": ["src/*"],
"@@/*": [".dumi/tmp/*"],
- "rc-pagination": ["src/index.ts"]
+ "@rc-component/pagination": ["src/index.ts"]
}
},
"include": [".dumirc.ts", "**/*.ts", "**/*.tsx"]
diff --git a/vercel.json b/vercel.json
new file mode 100644
index 00000000..cc12e405
--- /dev/null
+++ b/vercel.json
@@ -0,0 +1,3 @@
+{
+ "framework": "umijs"
+}