This repository has been archived on 2024-05-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
katex-server/package.json

15 lines
336 B
JSON
Raw Normal View History

2022-03-27 17:06:16 -07:00
{
"name": "katex-server",
"version": "1.0.0",
"description": "A miniature web API to render KaTeX for use in internal projects.",
"main": "server.js",
2022-03-27 17:27:01 -07:00
"bin": "server.js",
2022-03-27 17:06:16 -07:00
"author": "Danila Fedorin",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.2",
"express": "^4.17.3",
2022-10-19 02:09:44 +00:00
"katex": "^0.16.2"
2022-03-27 17:06:16 -07:00
}
}