-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "ts-prompt-syntax",
"publisher": "pAIrprog",
"displayName": "TS/JS Prompt Syntax Highlighting",
"description": "Support for markdown and xml tags highlighting in Typescript/Javascript template strings",
"version": "0.5.2",
"repository": {
"type": "git",
"url": "https://github.com/pAIrprogio/vscode-ts-prompt-syntax"
},
"icon": "images/icon.png",
"keywords": [
"typescript",
"javascript",
"template",
"string",
"markdown",
"xml",
"prompt",
"ai",
"syntax",
"highlighting"
],
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"scopeName": "ts-prompt-template-string",
"path": "./syntaxes/prompt-template-string.tm.json",
"injectTo": [
"source.ts",
"source.tsx",
"source.js",
"source.jsx"
],
"embeddedLanguages": {
"meta.embedded.xml": "xml",
"meta.embedded.markdown": "markdown"
}
}
]
},
"extensionDependencies": [
"redhat.vscode-xml"
],
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}