-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 923 Bytes
/
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
{
"name": "latex-tailwind",
"description": "A Tailwind CSS plugin for automatically styling plain HTML content with defaults to look like a LaTeX document",
"version": "2.2.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/samrobbins85/latex-tailwind.git"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export"
},
"files": [
"plugin/*.js"
],
"main": "./plugin/index.js",
"peerDependencies": {
"tailwindcss": "^2.0.3"
},
"devDependencies": {
"@mapbox/rehype-prism": "^0.6.0",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.0.7",
"autoprefixer": "^10.2.4",
"next": "^12.1.0",
"postcss": "^8.2.6",
"postcss-import": "^14.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rehype-katex": "^4.0.0",
"remark-footnotes": "^3.0.0",
"remark-math": "^3.0.1",
"tailwindcss": "2.0.3"
}
}