-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.78 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.78 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
{
"name": "liquid-inspector",
"displayName": "Shopify Liquid Inspector",
"description": "A VS Code extension for inspecting Shopify Liquid objects, filters and tags with comprehensive hover information",
"version": "2.1.0",
"license": "MIT",
"publisher": "ecmasx",
"main": "out/extension.js",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"keywords": [
"shopify",
"liquid",
"template",
"hover",
"intellisense",
"filters"
],
"activationEvents": [
"onLanguage:liquid"
],
"contributes": {
"configuration": {
"title": "Liquid Inspector",
"properties": {
"liquidInspector.enabled": {
"type": "boolean",
"default": true,
"description": "Enable Liquid Inspector"
},
"liquidInspector.showTypes": {
"type": "boolean",
"default": true,
"description": "Show type information in hover"
},
"liquidInspector.showDescription": {
"type": "boolean",
"default": true,
"description": "Show descriptions in hover"
},
"liquidInspector.maxPropertiesInHover": {
"type": "number",
"default": 25,
"minimum": 5,
"maximum": 100,
"description": "Maximum number of properties to show in hover tooltip"
},
"liquidInspector.showDeprecatedWarnings": {
"type": "boolean",
"default": true,
"description": "Show warnings for deprecated objects and filters"
},
"liquidInspector.enablePropertyValidation": {
"type": "boolean",
"default": true,
"description": "Enable validation of object properties"
},
"liquidInspector.highlightInvalidProperties": {
"type": "boolean",
"default": true,
"description": "Highlight invalid properties in code"
},
"liquidInspector.enableFilterHover": {
"type": "boolean",
"default": true,
"description": "Enable hover information for Shopify filters"
},
"liquidInspector.showFilterExamples": {
"type": "boolean",
"default": true,
"description": "Show examples in filter hover tooltips"
},
"liquidInspector.showFilterParameters": {
"type": "boolean",
"default": true,
"description": "Show parameter information for filters"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.60.0",
"@types/node": "16.x",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ecmasx/Shopify-Liquid-Inspector"
},
"icon": "images/logo.png"
}