-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "rehype-katex-notranslate",
"version": "1.1.4",
"description": "Add the attribute translate=\"no\" to the katex formula generated by rehype-katex to prevent the formulas from being recognized and translated by webpage translation tools.",
"main": "./dist/lib/index.js",
"type": "module",
"exports": "./dist/lib/index.js",
"keywords": [
"unified",
"markdown",
"mdx",
"mdast",
"rehype",
"rehype-plugin",
"plugin",
"translate",
"translation",
"browser",
"sanitize",
"format",
"fmt",
"html"
],
"scripts": {
"prepack": "npm run build && npm run format",
"build": "tsc --build --clean && tsc --build",
"format": "npx prettier . --write",
"test": "npm run build && node --test dist/test/index.test.js"
},
"files": [
"dist/lib",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/PrinOrange/rehype-katex-notranslate.git"
},
"homepage": "https://github.com/PrinOrange/rehype-katex-notranslate",
"author": "Ethan Zhang",
"license": "MIT",
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/node": "^22.10.7",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"typescript": "^5.7.3"
},
"dependencies": {
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
}
}