👋 Welcome to
@expo/package-manager
A library for installing and finding packages in a node project
---
## 🏁 Setup
Install `@expo/package-manager` in your project.
```sh
yarn add @expo/package-manager
```
## ⚽️ Usage
```ts
import * as PackageManager from '@expo/package-manager';
const manager = await PackageManager.createForProject(projectRoot);
await Promise.all([
manager.addDevAsync('@expo/webpack-config'),
manager.addAsync('expo', 'expo-camera'),
]);
```
## License
The Expo source code is made available under the [MIT license](LICENSE). Some of the dependencies are licensed differently, with the BSD license, for example.
---