-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 920 Bytes
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
{
"name": "render-latex",
"version": "1.0.3",
"description": "Parse and render LaTeX easily with KaTeX",
"license": "ISC",
"author": "Aarav Sharma (iamcoder18)",
"type": "module",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"test:serve": "jest --coverage && cd ./coverage/lcov-report && echo \"Code coverage server running at http://$(hostname -I | awk '{print $1}'):8005/\nHit CTRL-C to stop the server\" && npx http-server -p 8005 -s"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/katex": "^0.16.7",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"typescript": "^5.0.0"
},
"dependencies": {
"katex": "^0.16.22"
}
}