vscode/extensions/xml/package.json

95 lines
1.7 KiB
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"name": "xml",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
2015-11-13 13:39:38 +00:00
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"languages": [{
"id": "xml",
2015-11-29 02:13:23 +00:00
"extensions": [
2016-10-13 10:18:34 +00:00
".xml",
".xsd",
2015-11-29 02:13:23 +00:00
".ascx",
".atom",
2015-11-29 02:14:35 +00:00
".axml",
".bpmn",
".cpt",
".csl",
".csproj",
".csproj.user",
".dita",
".ditamap",
".dtd",
".dtml",
".fsproj",
".fxml",
".iml",
".isml",
".jmx",
".launch",
".menu",
".mxml",
".nuspec",
".opml",
".owl",
".proj",
".props",
2015-11-29 02:14:35 +00:00
".pt",
".publishsettings",
2015-11-29 02:14:35 +00:00
".pubxml",
".pubxml.user",
".rdf",
".rng",
".rss",
".shproj",
".storyboard",
".svg",
".targets",
".tld",
2016-11-03 06:32:44 +00:00
".tmx",
2015-11-29 02:14:35 +00:00
".vbproj",
".vbproj.user",
".vcxproj",
".vcxproj.filters",
".wsdl",
2015-11-29 02:13:23 +00:00
".wxi",
".wxl",
".wxs",
".xaml",
2015-11-29 02:14:35 +00:00
".xbl",
".xib",
".xlf",
".xliff",
".xpdl",
".xul",
".xoml"
2015-11-29 02:13:23 +00:00
],
2015-11-13 13:39:38 +00:00
"firstLine" : "(\\<\\?xml.*)|(\\<svg)|(\\<\\!doctype\\s+svg)",
"aliases": [ "XML", "xml" ],
"configuration": "./xml.language-configuration.json"
2015-11-13 13:39:38 +00:00
}, {
"id": "xsl",
2015-11-29 02:13:23 +00:00
"extensions": [
".xsl",
".xslt"
],
2015-11-13 13:39:38 +00:00
"aliases": [ "XSL", "xsl" ],
"configuration": "./xsl.language-configuration.json"
2015-11-13 13:39:38 +00:00
}],
"grammars": [{
"language": "xml",
"scopeName": "text.xml",
2018-02-09 11:15:33 +00:00
"path": "./syntaxes/xml.tmLanguage.json"
2015-11-13 13:39:38 +00:00
}, {
"language": "xsl",
"scopeName": "text.xml.xsl",
2018-02-09 11:15:33 +00:00
"path": "./syntaxes/xsl.tmLanguage.json"
2015-11-13 13:39:38 +00:00
}]
},
"scripts": {
2018-02-09 11:15:33 +00:00
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-xml grammars/xml.cson ./syntaxes/xml.tmLanguage.json grammars/xsl.cson ./syntaxes/xsl.tmLanguage.json"
2015-11-13 13:39:38 +00:00
}
2015-11-29 02:13:23 +00:00
}