unity-to-dep-graph
v1.0.0
Published
A small library that converts Unity package manager files (a `manifest.json` and its respective `packages-lock.json`) into a [dependency graph](https://www.npmjs.com/package/@snyk/dep-graph)
Downloads
1
Readme
unity-to-dep-graph
A small library that converts Unity package manager files (a
manifest.json
and its respective packages-lock.json
) into a
dependency graph
Getting started
npm i unity-to-dep-graph
import { unityToDepGraph } from 'unity-to-dep-graph';
const depGraph = await unityToDepGraph(
'project name',
'project version',
'manifest.json file contents',
'packages-lock.json file contents',
);