forked from rnacentre/WDL_Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.41 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
{
"name": "@mdit/plugin-katex-slim",
"version": "0.13.1",
"description": "katex plugin for MarkdownIt",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"katex"
],
"homepage": "https://mdit-plugins.github.io/katex.html",
"bugs": {
"url": "https://github.com/mdit-plugins/mdit-plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdit-plugins/mdit-plugins.git",
"directory": "packages/katex"
},
"license": "MIT",
"author": {
"name": "Mr.Hope",
"email": "mister-hope@outlook.com",
"url": "https://mister-hope.com"
},
"type": "module",
"exports": {
".": {
"type": "./lib/index.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"dependencies": {
"@types/katex": "^0.16.7",
"@types/markdown-it": "^14.1.2",
"@mdit/plugin-tex": "0.13.1"
},
"devDependencies": {
"katex": "0.16.11"
},
"peerDependencies": {
"katex": "^0.16.9",
"markdown-it": "^14.1.0"
},
"peerDependenciesMeta": {
"katex": {
"optional": true
},
"markdown-it": {
"optional": true
}
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin esbuild",
"clean": "rimraf ./lib"
}
}