-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "shiki-latex",
"version": "1.3.0",
"description": "A Shiki renderer for LaTeX. Compatible with minted, replacing Pygments.",
"files": [
"lib/**"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"shiki-minted": "lib/shiki-minted.js"
},
"scripts": {
"test": "prettier --check src && tsc && jest",
"build:example": "tsc && cd assets && rm -rf _minted-example example.aux example.fdb_latexmk example.fls example.log example.pdf example.synctex.gz shiki-minted-debug.log shiki-minted-theme.pyg && env DEBUG=shiki-latex latexmk"
},
"dependencies": {
"color": "^3.1.2",
"debug": "^4.1.1",
"shiki": "^0.1.6",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/debug": "^4.1.5",
"@types/jest": "^25.1.5",
"@types/node": "^13.11.0",
"@types/yargs": "^15.0.4",
"jest": "^25.2.7",
"prettier": "^2.0.2",
"typescript": "^3.8.3"
},
"jest": {
"rootDir": "lib",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leafac/shiki-latex.git"
},
"keywords": [
"shiki",
"latex",
"syntax-highlighter"
],
"author": "Leandro Facchinetti <[email protected]> (https://www.leafac.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/leafac/shiki-latex/issues"
},
"homepage": "https://github.com/leafac/shiki-latex",
"funding": [
"https://patreon.com/leafac",
"https://paypal.me/LeandroFacchinettiEU",
"https://github.com/sponsors/leafac",
"https://btc.com/34KJBgtaFYMtDqpSgMayw9qiKWg2GQXA9M"
]
}