-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (39 loc) · 1.11 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "drogon-csp-lanuage",
"displayName": "Drogon CSP",
"description": "Syntax Highlighting support for Drogon's CSP template files",
"version": "1.0.1",
"publisher": "marty1885",
"license": "MIT",
"engines": {
"vscode": "^1.20.0"
},
"repository": {
"type": "git",
"url": "https://github.com/marty1885/drogon-csp-language.git"
},
"contributes": {
"languages": [{
"id": "drogon-csp",
"aliases": ["Drogon CSP", "drogon-csp"],
"extensions": [".csp"],
"configuration": "./language-configuration.json"
}],
"grammars": [
{
"language": "drogon-csp",
"scopeName": "source.csp",
"path": "./syntaxes/drogon-csp.tmLanguage.json",
"embeddedLanguages": {
"source.cpp": "cpp",
"meta.embedded.block.cpp": "cpp"
}
},
{
"path": "./syntaxes/injection.json",
"scopeName": "todo-comment.injection",
"injectTo": ["text.html.derivative", "text.html.vue"]
}
]
}
}