-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
198 lines (198 loc) · 6.09 KB
/
package.json
File metadata and controls
198 lines (198 loc) · 6.09 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "fluid-language",
"displayName": "Fluid Template Language",
"description": "VSCode Extension for Fluid Templating Language",
"license": "MIT",
"version": "1.0.2",
"publisher": "FriendsOfTYPO3",
"icon": "extension.png",
"bugs": {
"url": "https://github.com/FriendsOfTYPO3/vscode-fluid-language/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/FriendsOfTYPO3/vscode-fluid-language.git"
},
"homepage": "https://github.com/FriendsOfTYPO3/vscode-fluid-language/blob/main/README.md",
"pricing": "Free",
"categories": [
"Programming Languages",
"Snippets",
"Linters"
],
"main": "client/out/extension.js",
"engines": {
"vscode": "^1.105.0"
},
"extensionDependencies": [
"vscode.html",
"vscode.html-language-features"
],
"contributes": {
"configuration": {
"title": "Fluid Templating Language",
"type": "object",
"properties": {
"fluid.features.liveTemplateAnalysis": {
"type": "boolean",
"order": 1,
"default": true,
"description": "Perform live analysis of Fluid templates with available binaries."
},
"fluid.bin.useDdevIfAvailable": {
"type": "boolean",
"order": 2,
"default": true,
"description": "Run binaries within DDEV if available."
},
"fluid.bin.typo3.path": {
"type": "string",
"order": 3,
"default": "",
"markdownDescription": "Custom location of TYPO3 binary. Only necessary for custom project setups. `${workspaceFolder}` is substituted with the path of the current workplace folder.\n\nExample: `path/to/typo3`."
},
"fluid.bin.typo3.args": {
"type": "array",
"items": {
"type": "string"
},
"order": 4,
"default": [],
"markdownDescription": "Arguments to prepend in each call to the custom TYPO3 binary. Only necessary for custom project setups. `${workspaceFolder}` is substituted with the path of the current workplace folder."
},
"fluid.bin.fluid.path": {
"type": "string",
"order": 5,
"default": "",
"markdownDescription": "Custom location of Fluid binary, only necessary for custom project setups. `${workspaceFolder}` is substituted with the path of the current workplace folder.\n\nExample: `path/to/fluid`."
},
"fluid.bin.fluid.args": {
"type": "array",
"items": {
"type": "string"
},
"order": 6,
"default": [],
"markdownDescription": "Arguments to prepend in each call to the custom Fluid binary. Only necessary for custom project setups. `${workspaceFolder}` is substituted with the path of the current workplace folder."
}
}
},
"configurationDefaults": {
"emmet.includeLanguages": {
"html-fluid": "html"
}
},
"htmlLanguageParticipants": [
{
"languageId": "html-fluid",
"autoInsert": true
}
],
"html": {
"customData": [
"./fluid/out/schema_TYPO3_CMS_Fluid_ViewHelpers.json",
"./fluid/out/schema_TYPO3_CMS_Form_ViewHelpers.json",
"./fluid/out/schema_TYPO3_CMS_Core_ViewHelpers.json"
]
},
"languages": [
{
"id": "fluid",
"aliases": [
"Fluid (Text)",
"Fluid",
"fluid"
],
"filenamePatterns": [
"*.fluid.*",
"**/Resources/Private/**/{Templates,Layouts,Partials,Components,PageView}/**/*.txt",
"**/ContentBlocks/**/templates/**/*.txt"
],
"configuration": "./languages/fluid-language.json",
"icon": {
"dark": "./languages/fluid-file.svg",
"light": "./languages/fluid-file.svg"
}
},
{
"id": "html-fluid",
"aliases": [
"Fluid (HTML)",
"html-fluid"
],
"filenamePatterns": [
"*.fluid.html",
"**/Resources/Private/**/{Templates,Layouts,Partials,Components,PageView}/**/*.html",
"**/ContentBlocks/**/templates/**/*.html"
],
"configuration": "./languages/fluid-language.json",
"icon": {
"dark": "./languages/fluid-file.svg",
"light": "./languages/fluid-file.svg"
}
}
],
"grammars": [
{
"language": "fluid",
"scopeName": "text.fluid",
"path": "./syntaxes/fluid.tmLanguage.json"
},
{
"language": "html-fluid",
"scopeName": "text.html.fluid",
"path": "./syntaxes/html-fluid.tmLanguage.json",
"embeddedLanguages": {
"source.css": "css",
"source.js": "javascript"
}
}
],
"snippets": [
{
"language": "fluid",
"path": "./snippets/fluid-snippets.json"
},
{
"language": "fluid",
"path": "./snippets/fluid-typo3-snippets.json"
},
{
"language": "html-fluid",
"path": "./snippets/fluid-snippets.json"
},
{
"language": "html-fluid",
"path": "./snippets/fluid-typo3-snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build && test -f ./fluid/out/schema_TYPO3_CMS_Fluid_ViewHelpers.json",
"build": "tsdown",
"watch": "tsdown -w --sourcemap",
"lint": "tsc --noEmit && eslint",
"publish": "npm run vscode-package && npm run vscode-publish && npm run ovsx-publish",
"vscode-package": "vsce package -o vscode-fluid-language.vsix",
"vscode-publish": "vsce publish -i vscode-fluid-language.vsix",
"ovsx-publish": "ovsx publish vscode-fluid-language.vsix"
},
"dependencies": {
"ajv": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^24.12.0",
"@types/vscode": "1.105",
"@vscode/vsce": "^3.9.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"ovsx": "^0.10.11",
"tsdown": "^0.21.7",
"typescript": "^6.0.3",
"typescript-eslint": "^8.57.2"
}
}