46 lines
996 B
JSON
46 lines
996 B
JSON
{
|
|
"name": "clojure",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "*"
|
|
},
|
|
"scripts": {
|
|
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "clojure",
|
|
"aliases": [
|
|
"Clojure",
|
|
"clojure"
|
|
],
|
|
"extensions": [
|
|
".clj",
|
|
".cljs",
|
|
".cljc",
|
|
".cljx",
|
|
".clojure",
|
|
".edn"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "clojure",
|
|
"scopeName": "source.clojure",
|
|
"path": "./syntaxes/clojure.tmLanguage.json"
|
|
}
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|