-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
41
42
{
"name": "inline-yaml",
"displayName": "Inline YAML Syntax Highlighting",
"description": "Javascript/Typescript YAML Template Literal Syntax Highlighting 🙌",
"version": "1.1.1",
"icon": "yaml-icon.png",
"publisher": "monotykamary",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/monotykamary/inline-yaml"
},
"contributes": {
"grammars": [
{
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.tsx",
"source.go"
],
"scopeName": "inline.yaml",
"path": "./syntaxes/inline-yaml.json",
"embeddedLanguages": {
"meta.embedded.block.yaml": "yaml"
}
}
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.0",
"standard-version": "^9.0.0"
}
}