-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
{
"name": "vscode-template-fsharp-highlight",
"displayName": "Highlight templates in F#",
"description": "Syntax highlighting for template strings in F#",
"icon": "fsharp.png",
"version": "1.7.0",
"publisher": "alfonsogarciacaro",
"license": "MIT",
"repository": {
"url": "https://github.com/alfonsogarciacaro/vscode-template-fsharp-highlight.git"
},
"bugs": {
"url": "https://github.com/alfonsogarciacaro/vscode-template-fsharp-highlight/issues"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:fsharp"
],
"main": "./out/extension",
"contributes": {
"grammars": [
{
"injectTo": [
"source.fsharp",
"source.fsharp.fsl"
],
"scopeName": "template.fsharp.injection",
"path": "./syntaxes/grammar.json",
"embeddedLanguages": {
"meta.embedded.string.html": "html",
"meta.embedded.string.sql": "sql",
"meta.embedded.string.css": "css",
"meta.embedded.string.js": "javascript",
"meta.embedded.string.jsx": "jsx-tags",
"meta.embedded.string.python": "python",
"meta.embedded.interpolated.html": "html",
"meta.embedded.interpolated.sql": "sql",
"meta.embedded.interpolated.css": "css",
"meta.embedded.interpolated.js": "javascript",
"meta.embedded.interpolated.jsx": "jsx-tags",
"meta.embedded.interpolated.python": "python"
}
},
{
"injectTo": [
"source.fsharp"
],
"scopeName": "template.fsharp.reinjection",
"path": "./syntaxes/reinject-grammar.json",
"embeddedLanguages": {
"meta.embedded.interpolated.substitution": "fsharp"
}
}
]
},
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"prepack": "npm run compile",
"pack": "vsce package"
},
"dependencies": {
},
"devDependencies": {
"@types/node": "^16.7.13",
"@types/vscode": "^1.43.0",
"typescript": "^4.2.2"
}
}