package.json 752 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
{
	"name": "bat",
	"displayName": "%displayName%",
	"description": "%description%",
	"version": "1.0.0",
	"publisher": "vscode",
	"license": "MIT",
	"engines": { "vscode": "*" },
	"scripts": {
		"update-grammar": "node ../../build/npm/update-grammar.js mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
	},
	"contributes": {
		"languages": [{
			"id": "bat",
			"extensions": [ ".bat", ".cmd"],
			"aliases": [ "Batch", "bat" ],
			"configuration": "./language-configuration.json"
		}],
		"grammars": [{
			"language": "bat",
			"scopeName": "source.batchfile",
			"path": "./syntaxes/batchfile.tmLanguage.json"
		}],
		"snippets": [{
			"language": "bat",
			"path": "./snippets/batchfile.code-snippets"
		}]
	}
}