UNPKG

@nx/expo

Version:

The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.

39 lines (38 loc) 1.03 kB
{ "version": 2, "outputCapture": "direct-nodejs", "cli": "nx", "$id": "NxExpoSyncDeps", "$schema": "https://json-schema.org/schema", "title": "Sync Deps for Expo", "description": "Updates package.json with project dependencies.", "type": "object", "properties": { "include": { "type": "array", "items": { "type": "string" }, "default": [], "description": "An array of additional npm packages to include." }, "exclude": { "type": "array", "items": { "type": "string" }, "default": [], "description": "An array of npm packages to exclude." }, "all": { "type": "boolean", "description": "Copy all dependencies and devDependencies from the workspace root package.json.", "default": false }, "excludeImplicit": { "type": "boolean", "description": "This will ignore npm packages from projects listed in implicitDependencies (e.g. backend API projects)", "default": false } } }