Deb Packages
Deb packages are the default package format for installing software on Debian and Debian derived systems (ex: Ubuntu, Linux Mint, etc). Artemis supports parsing the /var/lib/dpkg/status file to get installed deb packages.
Collection
You have to use the artemis api in order to collect installed deb packages.
Sample API Script
import {
getDebInfo,
} from "./artemis-api/mod";
function main() {
const results = getDebInfo();
console.log(results);
}
Output Structure
An array of DebPackages
entries.
export interface DebPackages {
name: string;
version: string;
size: number;
arch: string;
status: string;
maintainer: string;
section: string;
priority: string;
homepage: string;
dependencies: string[];
}