forked from ptweir/python-string-sql
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
103 lines (103 loc) · 3.06 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "highlight-string-code",
"displayName": "Highlight String Code",
"description": "Highlight string as SQL, HTML, CSS or JS in most languages. 高亮内嵌的SQL,HTML, CSS或者JS",
"version": "0.4.5",
"publisher": "iuyoy",
"author": {
"name": "iuyoy"
},
"icon": "docs/icon.png",
"bugs": {
"url": "https://github.com/iuyoy/highlight-string-code/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iuyoy/highlight-string-code"
},
"engines": {
"vscode": "^1.6.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"javascript",
"css",
"html",
"sql",
"hive",
"yaml",
"highlight",
"hightlight",
"embedded language"
],
"contributes": {
"grammars": [
{
"path": "./syntaxes/highlight-string-code.json",
"scopeName": "highlight-string-code",
"injectTo": [
"source.go",
"source.python",
"source.css",
"source.clojure",
"source.perl",
"source.perl.6",
"source.rust",
"source.fsharp",
"source.r",
"source.java",
"text.html.basic",
"text.html.derivative",
"source.php",
"text.html.php",
"source.lua",
"source.asp.vb.net",
"source.powershell",
"source.ts",
"source.tsx",
"source.c",
"source.cpp",
"source.c.platform",
"source.swift",
"source.shell",
"source.cs",
"source.batchfile",
"source.groovy",
"source.coffee",
"source.js.jsx",
"source.js",
"source.js.regexp",
"source.objc",
"source.objcpp",
"source.ruby",
"source",
"text"
],
"embeddedLanguages": {
"meta.embedded.block.css": "css",
"meta.embedded.block.js": "javascript",
"meta.embedded.block.html": "html",
"meta.embedded.block.sql": "sql",
"meta.embedded.block.hive": "hive-sql"
},
"tokenTypes": {
"meta.*": "other"
}
}
],
"snippets": [
{
"language": "",
"path": "./snippets/highlight-blocks.code-snippets"
}
]
},
"scripts": {
"build": "node ./build/build",
"genSnippets": "node ./build/generateSnippets"
}
}