-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.55 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"author": "Jerry Ho <jerrynh770@gmail.com> (https://angelrose.org)",
"bugs": "https://github.com/duz52/remark-math-extended/issues",
"contributors": [
"Jerry Ho <jerrynh770@gmail.com> (https://angelrose.org)",
"Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)",
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"devDependencies": {
"@types/node": "^22.0.0",
"c8": "^10.0.0",
"prettier": "^3.0.0",
"rehype-stringify": "^10.0.0",
"remark-cli": "^12.0.0",
"remark-parse": "^11.0.0",
"remark-preset-wooorm": "^11.0.0",
"remark-rehype": "^11.0.0",
"remark-stringify": "^11.0.0",
"type-coverage": "^2.0.0",
"typescript": "^5.0.0",
"unified": "^11.0.0",
"unist-util-remove-position": "^5.0.0",
"xo": "^0.60.0"
},
"dependencies": {
"@types/mdast": "^4.0.0",
"mdast-util-math": "^3.0.0",
"micromark-extension-math-extended": "^3.2.2",
"unified": "^11.0.0"
},
"description": "remark plugin for dollar (`$C_L$`) and TeX-style (`\\(C_L\\)`, `\\[C_L\\]`) math delimiters",
"exports": "./index.js",
"files": [
"index.d.ts.map",
"index.d.ts",
"index.js",
"lib/"
],
"funding": "https://buymeacoffee.com/duz52",
"keywords": [
"katex",
"latex",
"markdown",
"math",
"mdast",
"plugin",
"remark",
"remark-plugin",
"tex",
"unified"
],
"license": "MIT",
"name": "remark-math-extended",
"repository": {
"type": "git",
"url": "git+https://github.com/duz52/remark-math-extended.git"
},
"scripts": {
"build": "tsc --build --clean && tsc --build && type-coverage",
"format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix",
"format-check": "remark --frail --quiet -- . && prettier --check --log-level warn -- . && xo",
"test-api": "npm run test-api-dev && npm run test-api-prod",
"test-api-dev": "node --conditions development test.js",
"test-api-prod": "node --conditions production test.js",
"test-coverage": "c8 --100 --reporter lcov -- npm run test-api",
"test": "npm run build && npm run format-check && npm run test-coverage"
},
"sideEffects": false,
"type": "module",
"version": "6.1.1",
"xo": {
"prettier": true,
"rules": {
"logical-assignment-operators": "off"
}
},
"prettier": {
"bracketSpacing": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"remarkConfig": {
"plugins": [
"remark-preset-wooorm"
]
}
}