UNPKG

vulnmatter-extension

Version:

VS Code extension for CVE vulnerability analysis using the VulnMatter API with X-API-Key. See CHANGELOG.md for release notes.

70 lines (69 loc) 1.61 kB
{ "name": "vulnmatter-extension", "displayName": "VulnMatter CVE Analysis", "description": "VS Code extension for CVE vulnerability analysis using the VulnMatter API with X-API-Key. See CHANGELOG.md for release notes.", "version": "1.1.8", "publisher": "VulnMatterVSCodeExtension", "engines": { "vscode": "^1.60.0" }, "repository": { "type": "git", "url": "https://github.com/jeffrycascate/singularity-convert.git" }, "icon": "media/Icon.png", "main": "extension.js", "activationEvents": [ "onView:vulnmatterView" ], "contributes": { "viewsContainers": { "activitybar": [ { "id": "vulnmatterEditor", "title": "VulnMatter CVE Analysis", "icon": "media/icono.svg" } ] }, "views": { "vulnmatterEditor": [ { "type": "webview", "id": "vulnmatterView", "name": "CVE Analysis" } ] }, "commands": [ { "command": "vulnmatter.openAnalysis", "title": "Open CVE Analysis", "category": "VulnMatter" } ] }, "dependencies": { "axios": "^1.5.0" }, "devDependencies": { "@types/node": "^16.0.0", "@types/vscode": "^1.60.0", "@vscode/vsce": "^3.6.0", "eslint": "^8.0.0" }, "license": "SEE LICENSE IN LICENSE.txt", "keywords": [ "json", "converter", "security", "vulnerability", "cve", "vulnmatter" ], "scripts": { "compile": "webpack", "watch": "webpack --watch", "package": "webpack --mode production --devtool hidden-source-map" } }