From 6a24c8d3902b2a7cc73f9401a990f4933adc7e29 Mon Sep 17 00:00:00 2001 From: kogeletey Date: Thu, 22 Aug 2024 15:47:58 +0300 Subject: [PATCH] doc: create a lock file schema --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 20af379..36290a5 100644 --- a/README.md +++ b/README.md @@ -166,3 +166,29 @@ Settings format is on Linux by address `$HOME/.config/wacli/wacfg.json` } } ``` + +Packages installed stored into lock file in json format, by path `$HOME/.config/wacli/wa.lock` + +```json +{ + "fileVersion": 1, + "bins": { + "": { + integrity: "", + source: "", + installPath: "", + alias?: "", + version: "" + } + }, + "ains": { + "": { + integrity: "", + source: "", + installPath: "", + alias?: "", + version: "" + } + } +} +```