mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
18 lines
688 B
Plaintext
18 lines
688 B
Plaintext
table_name("atom_packages")
|
|
description("Lists all atom packages in a directory or globally installed in a system.")
|
|
schema([
|
|
Column("name", TEXT, "Package display name"),
|
|
Column("version", TEXT, "Package supplied version"),
|
|
Column("description", TEXT, "Package supplied description"),
|
|
Column("path", TEXT, "Package's package.json path"),
|
|
Column("license", TEXT, "License for package"),
|
|
Column("homepage", TEXT, "Package supplied homepage"),
|
|
Column("uid", BIGINT, "The local user that owns the plugin",
|
|
index=True),
|
|
])
|
|
attributes(user_data=True)
|
|
implementation("applications/atom_packages@genAtomPackages")
|
|
examples([
|
|
"select * from atom_packages",
|
|
])
|