forked from panoply/vscode-json-script-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1010 Bytes
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1010 Bytes
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
41
{
"name": "json-script-tag",
"displayName": "JSON Script Tag",
"description": "JSON Syntax highlighting support for html script tags using application/json and application/ld+json attributes.",
"publisher": "sissel",
"icon": "images/logo.png",
"author": "Nikolas Savvidis <[email protected]>",
"version": "0.3.2",
"keywords": [
"html",
"script json tag",
"json tag",
"json tag html"
],
"repository": {
"type": "git",
"url": "https://github.com/panoply/vscode-json-script-tag.git"
},
"bugs": {
"url": "https://github.com/panoply/vscode-json-script-tag/issues"
},
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages",
"Other"
],
"contributes": {
"grammars": [
{
"scopeName": "source.json.embedded",
"path": "./syntax/script-json.embedded.json",
"injectTo": ["text.html"],
"embeddedLanguages": {
"meta.embedded.block.json.html": "json"
}
}
]
}
}