Add the package name you want to your package.json dependencies, and then make the value `npm:`. You can also add a version to the end. `package.json` ```json { "dependencies": { "moti18": "npm:moti@0.18.0" } } ``` This will install `moti` at version `0.18.0`, and rename it to `moti18`. Alternatively: ```sh yarn add moti18@npm:moti@0.18.0 ``` You can now import from the renamed package: ```ts import { MotiView } from 'moti18' ```