This repository has been archived by the owner on Feb 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
107 lines (107 loc) · 2.98 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
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
{
"name": "latex-support",
"version": "4.0.0",
"displayName": "LaTeX language support",
"description": "LaTeX language support for Visual Studio Code",
"repository": {
"type": "git",
"url": "https://github.com/AREA44/vscode-LaTeX-support"
},
"license": "MIT",
"icon": "images/icon.png",
"publisher": "torn4dom4n",
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "1.63.0"
},
"keywords": [
"BibTeX",
"LaTeX",
"TeX"
],
"contributes": {
"languages": [
{
"id": "bibtex",
"aliases": [
"BibTeX"
],
"extensions": [
".bib"
],
"configuration": "./settings/configuration.json"
},
{
"id": "latex",
"aliases": [
"LaTeX"
],
"extensions": [
".tex",
".ltx",
".ctx"
],
"configuration": "./settings/configuration.json"
},
{
"id": "tex",
"aliases": [
"TeX"
],
"extensions": [
".sty",
".cls",
".bbx",
".cbx"
],
"configuration": "./settings/configuration.json"
}
],
"grammars": [
{
"language": "bibtex",
"scopeName": "text.bibtex",
"path": "./grammars/Bibtex.json"
},
{
"language": "latex",
"scopeName": "text.tex.latex",
"path": "./grammars/LaTeX.json",
"embeddedLanguages": {
"source.asymptote": "asymptote",
"source.cpp": "cpp",
"source.css": "css",
"source.dot": "dot",
"source.gnuplot": "gnuplot",
"text.html": "html",
"source.java": "java",
"source.js": "javascript",
"source.lua": "lua",
"source.python": "python",
"source.ruby": "ruby",
"source.scala": "scala",
"source.ts": "typescript",
"text.xtml": "xtml",
"source.yaml": "yaml"
}
},
{
"language": "tex",
"scopeName": "text.tex",
"path": "./grammars/TeX.json"
}
],
"snippets": [
{
"language": "latex",
"path": "./snippets/LaTeX.json"
}
]
},
"devDependencies": {
"fast-plist": "0.1.2",
"cson-parser": "4.0.2"
}
}