This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2.34 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
{
"name": "typescript-javascript-grammar",
"private": true,
"displayName": "Latest TypeScript and Javascript Grammar",
"description": "This is development branch of VSCode JS/TS colorization. Please file any issues you find against https://github.com/Microsoft/TypeScript-TmLanguage/issues",
"license": "SEE LICENSE IN LICENSE.txt",
"author": "Microsoft Corporation",
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"icon": "logo.png",
"publisher": "ms-vscode",
"version": "0.0.58",
"engines": {
"vscode": "*"
},
"scripts": {
"update-grammar": "node ./build/update-grammar.js"
},
"devDependencies": {
"fast-plist": "0.1.1"
},
"bugs": {
"url": "https://github.com/Microsoft/TypeScript-TmLanguage/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sheetalkamat/TypeScript-TmLanguage-VsCode.git"
},
"extensionDependencies": [
"vscode.typescript",
"vscode.javascript"
],
"categories": [
"Languages"
],
"keywords": [
"typeScript",
"javascript"
],
"contributes": {
"grammars": [
{
"language": "javascript",
"scopeName": "source.js",
"path": "./syntaxes/JavaScript.tmLanguage.json",
"embeddedLanguages": {
"meta.tag.js": "jsx-tags",
"meta.tag.without-attributes.js": "jsx-tags",
"meta.tag.attributes.js": "javascriptreact",
"meta.embedded.expression.js": "javascriptreact"
}
},
{
"language": "typescript",
"scopeName": "source.ts",
"path": "./syntaxes/TypeScript.tmLanguage.json"
},
{
"language": "typescriptreact",
"scopeName": "source.tsx",
"path": "./syntaxes/TypeScriptReact.tmLanguage.json",
"embeddedLanguages": {
"meta.tag.tsx": "jsx-tags",
"meta.tag.without-attributes.tsx": "jsx-tags",
"meta.tag.attributes.tsx": "typescriptreact",
"meta.embedded.expression.tsx": "typescriptreact"
}
}
]
}
}