blob: 2dc8d8fab0566e5c76576e1a5551d0239d3e1d92 [file] [log] [blame]
{
"name": "language-fidl",
"displayName": "FIDL Language Support",
"description": "Support for FIDL files",
"license": "SEE LICENSE IN LICENSE",
"version": "0.0.3",
"publisher": "fuchsia-authors",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Languages"
],
"activationEvents": [
"onCommand:extension.goToFidlSource"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "fidl",
"aliases": [
"FIDL",
"fidl"
],
"extensions": [
".fidl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "fidl",
"scopeName": "source.fidl",
"path": "./syntaxes/fidl.tmLanguage.json"
}
],
"commands": [
{
"command": "extension.goToFidlSource",
"title": "FIDL: Go To Source"
}
]
},
"homepage": "https://fuchsia.googlesource.com/vscode-language-fidl",
"repository": {
"type": "git",
"url": "https://fuchsia.googlesource.com/vscode-language-fidl"
},
"icon": "images/fuchsia_logo_128x128.png",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"@types/node": "^7.0.43"
}
}