Extension Manifest File - package.json

Every Visual Studio Code extension needs a manifest file package.json at the root of the extension directory structure.

Fields

Name Required Type Details
name Y string The name of the extension - should be all lowercase with no spaces.
version Y string Semver compatible version.
publisher Y string The publisher name
engines Y object An object containing at least the vscode key matching the versions of Code that the extension is compatible with. Cannot be * as we will refuse to load, an example is 0.10.x.
displayName string The display name for the extension used in the Gallery.
description string A short description of what your extension is and does.
categories string[] the categories you want to use for the extensions allowed values: [Languages, Snippets, Linters, Themes, Debuggers, Other]
galleryBanner object Helps format the gallery header to match your icon. See details below.
main string The entry point to your extension.
contributes object An object describing the extension's contributions.
activationEvents array An array of the activation events for this extension.
keywords array An array of keywords or tags to make it easier to find the extension.
dependencies object Any runtime Node.js dependencies your extensions needs. Exactly the same as npm's dependencies.
devDependencies object Any development Node.js dependencies your extension needs. Exactly the same as npm's devDependencies.
extensionDependencies array An array with the ids of extensions that this extension depends on. The id of an extension is always ${publisher}.${name}. For example: vscode.csharp.
isAMD boolean Indicated whether Visual Studio Code should load your code as AMD or CommonJS. Default: false.
scripts object Exactly the same as npm's scripts but with extra VS Code specific fields.
icon string The path to a 128x128 pixel icon.

Also check npm's package.json reference.

Example

Here is a complete package.json

{
    "name": "Spell",
    "displayName": "Spelling and Grammar Checker",
    "description": "Detect mistakes as you type and suggest fixes - great for Markdown.",
    "icon": "images/spellIcon.svg",
    "version": "0.0.19",
    "publisher": "seanmcbreen",
    "galleryBanner": {
        "color": "#0000FF",
        "theme": "dark"
    },
    "license": "SEE LICENSE IN LICENSE.md",
    "bugs": {
        "url": "https://github.com/Microsoft/vscode-spell-check/issues",
        "email": "smcbreen@microsoft.com"
    },
    "homepage": "https://github.com/Microsoft/vscode-spell-check/blob/master/README.md",
    "repository": {
        "type": "git",
        "url": "https://github.com/Microsoft/vscode-spell-check.git"
    },
    "categories": [
        "Linters", "Languages", "Other"
    ],
    "engines": {
        "vscode": "0.10.x"
    },
    "main": "./out/extension",
    "activationEvents": [
        "onLanguage:markdown"
    ],
    "contributes": {
        "commands": [
            {
                "command": "Spell.suggestFix",
                "title": "Spell Checker Suggestions"
            }
        ],
        "keybindings": [
            {
                "command": "Spell.suggestFix",
                "key": "Alt+."
            }
        ]
    },
    "scripts": {
        "vscode:prepublish": "node ./node_modules/vscode/bin/compile",
        "compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
    },
    "dependencies": {
        "teacher": "^0.0.1"
    },
    "devDependencies": {
        "vscode": "next"
    }
}

Marketplace Presentation Tips

Here are some tips and recommendations to make your extension look great when displayed on the VS Code Marketplace.

Always use the latest vsce so npm install -g vsce to make sure you have it.

Have a README.md Markdown file in your extension's root folder and we will include the contents in the body of the extension details (on the Marketplace). You can provide relative path image links in the REAMDE.md.

Here are a few examples:

  1. Spell-Checker
  2. MD Tools

Provide a good display name and description. This is important for the Marketplace and in product displays. These strings are also used for text search in VS Code and having relevant keywords will help a lot.

    "displayName": "Spelling and Grammar Checker",
    "description": "Detect mistakes as you type and suggest fixes - great for Markdown.",

An Icon and a contrasting banner color looks great on the Marketplace page header. The theme attribute refers to the font to be used in the banner - dark or light.

    "icon": "images/spellIcon.svg",
    "galleryBanner": {
        "color": "#5c2d91",
        "theme": "dark"
    },

There are several optional links (bugs, homepage, repository) you can set and these are displayed in the 'resources' section of the Marketplace.

    "license": "SEE LICENSE IN LICENSE.md",
    "bugs": {
        "url": "https://github.com/Microsoft/vscode-spell-check/issues"
    },
    "homepage": "https://github.com/Microsoft/vscode-spell-check/blob/master/README.md",
    "repository": {
        "type": "git",
        "url": "https://github.com/Microsoft/vscode-spell-check.git"
    }

Set a category for your extension. Extensions in the same category are grouped together on the gallery which improves filtering and discovery.

Note: Only use the values that make sense for your extension - allowed values are [Languages, Snippets, Linters, Themes, Debuggers, Other]

    "categories": [
        "Linters", "Languages", "Other"
    ],

Combining Extension Contributions

The yo code generator lets you easily package TextMate themes, colorizers and snippets and create new extensions. When the generator is run, it creates a complete standalone extension package for each option. However it is often more convenient to have a single extension which combines multiple contributions. For example, if you are adding support for a new language, you'd like to provide users with both the language definition with colorization and also snippets and perhaps even debugging support.

To combine extension contributions, simply edit an existing extension manifest package.json and add the new contributions and associated files.

Below is an extension manifest which includes a LaTex language definition (language identifier and file extensions), colorization (grammar), and snippets.

{
    "name": "language-latex",
    "description": "LaTex Language Support",
    "version": "0.0.1",
    "publisher": "someone",
    "engines": {
        "vscode": "0.10.x"
    },
    "categories": [
        "Languages",
        "Snippets"
    ],
    "contributes": {
        "languages": [{
            "id": "latex",
            "aliases": ["LaTeX", "latex"],
            "extensions": [".tex"]
        }],
        "grammars": [{
            "language": "latex",
            "scopeName": "text.tex.latex",
            "path": "./syntaxes/latex.tmLanguage"
        }],
        "snippets": [{
            "language": "latex",
            "path": "./snippets/snippets.json"
        }]
    }
}

Notice that the extension manifest categories attribute now includes both Languages and Snippets for easy discovery and filtering on the Marketplace.

Tip: Make sure your merged contributions are using the same identifiers. In the example above, all three contributions are using "latex" as the language identifier. This lets VS Code know that the colorizer (grammar) and snippets are for the LaTeX language and will be active when editing LaTeX files.

Next Steps

To learn more about VS Code extensibility model, try these topic:

Common Questions

Nothing yet