2015-12-08 11:03:02 +01:00
{
2023-07-07 16:15:55 -04:00
"name" : "mathjax" ,
2026-02-19 17:13:13 -05:00
"version" : "4.1.1" ,
2023-07-07 16:15:55 -04:00
"description" : "Beautiful and accessible math in all browsers. MathJax is an open-source JavaScript display engine for LaTeX, MathML, and AsciiMath notation that works in all browsers. This package includes the packaged components (install mathjax-full to get the source code)." ,
"keywords" : [
"MathJax" ,
"math" ,
"svg" ,
"mathml" ,
"tex" ,
"latex" ,
"asciimath" ,
"browser" ,
"node"
] ,
"license" : "Apache-2.0" ,
"maintainers" : [
"MathJax Consortium <info@mathjax.org> (http://www.mathjax.org)"
] ,
"bugs" : {
"url" : "http://github.com/mathjax/MathJax/issues"
} ,
"repository" : {
"type" : "git" ,
"url" : "https://github.com/mathjax/MathJax"
} ,
2023-11-28 10:44:38 -05:00
"main" : "node-main.mjs" ,
2023-07-07 16:15:55 -04:00
"exports" : {
"." : {
"import" : "./node-main.mjs" ,
"require" : "./node-main.cjs"
} ,
"./es5/*" : "./*" ,
"./*" : "./*"
} ,
"files" : [
2024-04-30 15:43:39 -04:00
"LICENSE" ,
"CONTRIBUTING.md" ,
"README.md" ,
2023-07-07 16:15:55 -04:00
"*.js" ,
"*.mjs" ,
"*.cjs" ,
"a11y" ,
"adaptors" ,
"input" ,
"output" ,
"sre" ,
"ui"
] ,
"scripts" : {
"test" : "echo 'No tests defined'" ,
"===================================================================== clean" : "" ,
"clean" : "npm run -s clean:bundle && npm run -s clean:node" ,
"clean:bundle" : "rm -rf *.*js a11y adaptors input output sre ui" ,
"clean:node" : "rm -rf node_modules package-lock.json" ,
"===================================================================== message" : "" ,
"message" : "msg() { echo \"$(tput setaf 4)$1$(tput setaf 0)\"; }; msg" ,
"===================================================================== install" : "" ,
2023-07-19 14:34:54 -04:00
"preinstall:mj4" : "npm run -s message 'Installing MathJax...'" ,
2023-07-07 16:15:55 -04:00
"install:mj4" : "npm install" ,
"===================================================================== move" : "" ,
"premove" : "npm run -s message 'Moving MathJax Components...'" ,
2025-06-26 11:02:15 -04:00
"move" : "npm run -s clean:bundle && mv -n node_modules/@mathjax/src/bundle/* ." ,
2023-07-07 16:15:55 -04:00
"===================================================================== build" : "" ,
"prebuild" : "npm run -s clean:node" ,
"build" : "npm run -s install:mj4 && npm run -s move" ,
"postbuild" : "npm run -s message 'Cleaning Up...' && npm run -s clean:node"
} ,
"devDependencies" : {
2026-02-19 17:13:13 -05:00
"@mathjax/src" : "^4.1.1"
2023-10-04 13:18:06 -04:00
} ,
"dependencies" : {
2026-02-19 17:13:13 -05:00
"@mathjax/mathjax-newcm-font" : "^4.1.1"
2023-07-07 16:15:55 -04:00
}
2015-12-08 11:03:02 +01:00
}