-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.05 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.05 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
{
"name": "jslatex",
"displayName": "JSLaTeX",
"description": "Supercharge your LaTeX files with JavaScript!",
"icon": "assets/icon.png",
"type": "module",
"version": "0.1.2",
"publisher": "leonzalion",
"license": "MIT",
"homepage": "https://github.com/leonzalion/JSLaTeX",
"repository": {
"type": "git",
"url": "https://github.com/leonzalion/JSLaTeX.git"
},
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Linters",
"Formatters"
],
"keywords": [
"latex",
"tex",
"ejs",
"compile"
],
"main": "./dist/extension.cjs",
"activationEvents": [
"onLanguage:latex"
],
"contributes": {
"languages": [
{
"id": "jslatex",
"aliases": [
"JSLaTeX",
"jslatex"
],
"configuration": "./dist/syntaxes/jslatex-language-configuration.json",
"icon": {
"light": "./icons/jslatex.png",
"dark": "./icons/jslatex.png"
}
}
],
"grammars": [
{
"scopeName": "text.tex.latex.jslatex",
"path": "./dist/syntaxes/JSLaTeX.tmLanguage.json",
"language": "latex",
"embeddedLanguages": {
"source.js": "javascript"
}
},
{
"scopeName": "markup.raw.verbatim.latex.jslatex",
"path": "./dist/syntaxes/JSLaTeX-verbatim.tmLanguage.json",
"injectTo": [
"text.tex.latex"
],
"embeddedLanguages": {
"source.js": "javascript"
}
}
]
},
"scripts": {
"watch": "vite build --watch",
"release": "node-ts ./scripts/release.ts",
"build": "vite build --mode=development",
"build:release": "vite build",
"build:syntax": "node-ts ./scripts/build-syntax.ts"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/vscode": "^1.66.0",
"chalk": "^5.0.1",
"dot-prop": "^7.2.0",
"inquirer": "^8.2.2",
"inquirer-press-to-continue": "^1.0.8",
"lionconfig": "^1.6.25",
"outdent": "^0.8.0",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vsce": "^2.7.0",
"vscode-ejs": "^0.0.6"
},
"dependencies": {
"escape-string-regexp": "^5.0.0",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0"
}
}