CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json51 linesDownload Raw Back to remark-math
1{2  "name": "remark-math",3  "version": "6.0.0",4  "description": "remark plugin to parse and stringify math",5  "license": "MIT",6  "keywords": [7    "katex",8    "latex",9    "markdown",10    "math",11    "mdast",12    "plugin",13    "remark",14    "remark-plugin",15    "tex",16    "unified"17  ],18  "repository": "https://github.com/remarkjs/remark-math/tree/main/packages/remark-math",19  "bugs": "https://github.com/remarkjs/remark-math/issues",20  "funding": {21    "type": "opencollective",22    "url": "https://opencollective.com/unified"23  },24  "author": "Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)",25  "contributors": [26    "Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)",27    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"28  ],29  "sideEffects": false,30  "type": "module",31  "exports": "./index.js",32  "files": [33    "lib/",34    "index.d.ts",35    "index.js"36  ],37  "dependencies": {38    "@types/mdast": "^4.0.0",39    "mdast-util-math": "^3.0.0",40    "micromark-extension-math": "^3.0.0",41    "unified": "^11.0.0"42  },43  "scripts": {44    "test-api": "node --conditions development test.js",45    "test": "npm run build && npm run test-api"46  },47  "xo": {48    "prettier": true49  }50}51 
basant307/AI_Governance_Project · CoolFace