0.0.3 • Published 7 years ago

vsix-info v0.0.3

Weekly downloads
1,432
License
ISC
Repository
github
Last release
7 years ago

vsix-info

Get id, publisher name, name and version of a vsix file.

build status dependency status

Installation

npm install --save vsix-info

Usage

var VsixInfo = require('vsix-info').default

VsixInfo.getInfo('./fake-vscode-extension-0.0.1.vsix').then(info => {
    console.log(info)
})

Console

{
    displayName: 'fake-vscode-extension',
    publisher: 'JulienCroain',
    version: '0.0.1',
    id: 'fake-vscode-extension',
    readme: 'content of README.md file',
    path: './fake-vscode-extension-0.0.1.vsix'
}

Credits

Julien Croain

License

ISC

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago