Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sinchang/vsce-item-property
Get vsce meta information
https://github.com/sinchang/vsce-item-property
microsoft vsce vscode
Last synced: about 19 hours ago
JSON representation
Get vsce meta information
- Host: GitHub
- URL: https://github.com/sinchang/vsce-item-property
- Owner: sinchang
- License: mit
- Created: 2018-09-26T03:16:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-24T07:42:30.000Z (about 6 years ago)
- Last Synced: 2024-12-23T04:47:33.360Z (5 days ago)
- Topics: microsoft, vsce, vscode
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vsce-item-property
[![NPM version](https://img.shields.io/npm/v/vsce-item-property.svg?style=flat)](https://npmjs.com/package/vsce-item-property) [![NPM downloads](https://img.shields.io/npm/dm/vsce-item-property.svg?style=flat)](https://npmjs.com/package/vsce-item-property) [![codecov](https://codecov.io/gh/sinchang/vsce-item-property/branch/master/graph/badge.svg)](https://codecov.io/gh/sinchang/vsce-item-property) [![Build Status](https://travis-ci.com/sinchang/vsce-item-property.svg?branch=master)](https://travis-ci.com/sinchang/vsce-item-property)
## Install
```bash
npm i vsce-item-property
```## Usage
```js
const vsceItemProperty = require('vsce-item-property')vsceItemProperty('vscodevim.vim')
.then(res => console.log(res))
.catch(err => console.log(err))// =>
{
publisherName: vscodevim
publisherId: 5d63889b-1b67-4b1f-8350-4f1dce041a26
publisherDisplayName: vscodevim
displayName: Vim
extensionName: vim
extensionId: d96e79c6-8b25-4be3-8545-0e0ecefcae03
lastUpdated: 2018-09-21T07:23:39.407Z
releaseDate: 2015-11-29T10:38:55.38Z
publishedDate: 2015-11-29T10:38:55.38Z
shortDescription: Vim emulation for Visual Studio Code
version: 0.16.5
ratingValue: 4.284768104553223
ratingCount: 151
downloadCount: 4019936
icon: https://vscodevim.gallerycdn.vsassets.io/extensions/vscodevim/vim/0.16.5/1537514619484/Microsoft.VisualStudio.Services.Icons.Default
smallIcon: https://vscodevim.gallerycdn.vsassets.io/extensions/vscodevim/vim/0.16.5/1537514619484/Microsoft.VisualStudio.Services.Icons.Small
github: https://github.com/VSCodeVim/Vim.git
}
```
## Related- [vsce-item-property-cli](https://github.com/sinchang/vsce-item-property-cli)
## Contributing
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D## Author
**vsce-item-property** © [sinchang](https://github.com/sinchang), Released under the [MIT](./LICENSE) License.
Authored and maintained by sinchang with help from contributors ([list](https://github.com/sinchang/vsce-item-property/contributors)).> [sinchang.me](https://sinchang.me) · GitHub [@sinchang](https://github.com/sinchang) · Twitter [@sinchangwen](https://twitter.com/sinchangwen)