vsix-npm-wrapper
Version:
CLI tool to wrap Visual Studio Code extension files (.vsix) as npm packages compatiable with 'private-extension-manager'
46 lines (45 loc) • 1.1 kB
JSON
{
"name": "vsix-npm-wrapper",
"version": "0.0.1",
"description": "CLI tool to wrap Visual Studio Code extension files (.vsix) as npm packages compatiable with 'private-extension-manager'",
"scripts": {
"build": "tsc -p"
},
"bin": {
"vsix-wrap": "bin/vsix-wrapper"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/ddevmoe/vsix-npm-wrapper.git"
},
"keywords": [
"npm",
"cli",
"vsix",
"visual studio code",
"private-extension-manager"
],
"files": [
"lib",
"bin"
],
"author": "Moe D <ddevmo@gmail.com>",
"license": "ISC",
"dependencies": {
"args": "^5.0.1",
"commander": "^4.1.0",
"glob": "^7.1.6",
"path": "^0.12.7",
"unzipper": "^0.10.7"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^13.1.8",
"@types/unzipper": "^0.10.1",
"typescript": "^3.7.5"
},
"bugs": {
"url": "https://gitlab.com/ddevmoe/registry-contains/issues"
},
"homepage": "https://gitlab.com/ddevmoe/registry-contains#readme"
}