-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.96 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
{
"name": "hstd",
"private": true,
"displayName": "HyperStandard",
"description": "Syntax highlighting and IntelliSense for HyperStandard templates",
"version": "0.1.0",
"publisher": "hstd-dev",
"license": "MIT",
"repository": {
"url": "https://github.com/hstd-dev/hstd.git"
},
"bugs": {
"url": "https://github.com/hstd-dev/hstd/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"hstd",
"hyperstandard",
"javascript",
"typescript",
"html",
"template"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx"
],
"scopeName": "inline.hstd-html",
"path": "./syntaxes/hstd-html.json",
"embeddedLanguages": {
"meta.embedded.block.html": "html",
"meta.embedded.block.css": "css",
"source.css": "css"
}
},
{
"injectTo": [
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx"
],
"scopeName": "inline.hstd-html.string.injection",
"path": "./syntaxes/hstd-injection.json",
"embeddedLanguages": {
"meta.template.expression.ts": "typescript"
}
},
{
"injectTo": [
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx"
],
"scopeName": "inline.hstd-html.style.injection",
"path": "./syntaxes/hstd-css-injection.json",
"embeddedLanguages": {
"meta.template.expression.ts": "typescript"
}
},
{
"injectTo": [
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx"
],
"scopeName": "inline.hstd-props",
"path": "./syntaxes/hstd-props.json"
}
],
"typescriptServerPlugins": [
{
"name": "@hstd/ts",
"enableForWorkspaceTypeScriptVersions": true
}
]
},
"devDependencies": {
"@types/vscode": "^1.75.0"
}
}