{ "name": "toml", "displayName": "%displayName%", "description": "%description%", "version": "1.0.0", "publisher": "vscode", "engines": { "vscode": "*" }, "scripts": { "update-grammar": "node ../../build/npm/update-grammar.js textmate/toml.tmbundle Syntaxes/TOML.tmLanguage ./syntaxes/toml.tmLanguage.json" }, "contributes": { "languages": [{ "id": "toml", "aliases": ["Toml", "toml"], "extensions": [".toml"], "configuration": "./language-configuration.json" }], "grammars": [{ "language": "toml", "scopeName": "source.toml", "path": "./syntaxes/toml.tmLanguage.json" }] } }