-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.62 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "mechanic-liquid",
"version": "0.0.18",
"preview": true,
"publisher": "timdmackey",
"displayName": "Mechanic Liquid Support",
"description": "Provides syntax highlighting and code snippets for Mechanic-flavored Liquid",
"icon": "images/mechanic-liquid-logo.png",
"galleryBanner": {
"color": "#092f2f",
"theme": "dark"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"liquid",
"shopify",
"mechanic"
],
"homepage": "https://github.com/timdmackey/vscode-mechanic-liquid",
"repository": {
"type": "git",
"url": "https://github.com/timdmackey/vscode-mechanic-liquid.git"
},
"bugs": "https://github.com/timdmackey/vscode-mechanic-liquid/issues",
"qna": false,
"license": "LICENSE.md",
"activationEvents": [
"*"
],
"main": "./scripts/extension.js",
"contributes": {
"languages": [
{
"id": "mechanic-liquid",
"aliases": [
"Mechanic Liquid",
"Shopify Mechanic Liquid"
],
"extensions": [
".mechanic.liquid"
],
"configuration": "./languages/mechanic-liquid.language-configuration.json"
}
],
"grammars": [
{
"language": "mechanic-liquid",
"scopeName": "source.mechanic-liquid",
"path": "./syntaxes/mechanic-liquid.tmLanguage.json"
}
],
"snippets": [
{
"language": "mechanic-liquid",
"path": "./snippets/liquid.json"
},
{
"language": "mechanic-liquid",
"path": "./snippets/mechanic-liquid.json"
}
],
"colors": [
{
"id": "mechanicLiquid.commentBackground",
"description": "Background decoration color for comments",
"defaults": {
"dark": "#ffffff10",
"light": "#00000010",
"highContrast": "#ffffff09"
}
},
{
"id": "mechanicLiquid.actionBackground",
"description": "Background decoration color for comments",
"defaults": {
"dark": "#62ff0038",
"light": "#62ff0038",
"highContrast": "#62ff0038"
}
},
{
"id": "mechanicLiquid.queryBackground",
"description": "Background decoration color for comments",
"defaults": {
"dark": "#7700ff22",
"light": "#7700ff22",
"highContrast": "#7700ff22"
}
},
{
"id": "mechanicLiquid.statusBackground",
"description": "Background decoration color for echo and log tags",
"defaults": {
"dark": "#005eff1d",
"light": "#005eff1d",
"highContrast": "#005eff1d"
}
},
{
"id": "mechanicLiquid.errorBackground",
"description": "Background decoration color for error tags",
"defaults": {
"dark": "#ff000022",
"light": "#ff000022",
"highContrast": "#ff000022"
}
}
]
}
}