textlint-plugin-mdx 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/lib/index.js +52 -28730
- package/package.json +11 -9
- package/lib/mdxProcessor.js +0 -28729
- package/lib/parse.js +0 -28704
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "textlint-plugin-mdx",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "textlint plugin to lint MDX",
|
|
5
5
|
"keywords": ["textlint", "textlintplugin", "plugin", "lint", "mdx"],
|
|
6
|
-
"repository": "https://github.com/
|
|
6
|
+
"repository": "https://github.com/textlint/textlint-plugin-mdx",
|
|
7
7
|
"funding": {
|
|
8
8
|
"type": "github",
|
|
9
9
|
"url": "https://github.com/sponsors/3w36zj6"
|
|
@@ -13,25 +13,27 @@
|
|
|
13
13
|
"main": "lib/index.js",
|
|
14
14
|
"files": ["lib"],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "esbuild
|
|
16
|
+
"build": "esbuild src/index.ts --bundle --outfile=lib/index.js --platform=node --minify",
|
|
17
17
|
"clean": "rm -frv lib",
|
|
18
18
|
"format": "biome format --write .",
|
|
19
19
|
"format:check": "biome format .",
|
|
20
20
|
"lint": "biome lint .",
|
|
21
21
|
"lint:fix": "biome lint --apply .",
|
|
22
22
|
"check": "biome check .",
|
|
23
|
+
"check:fix": "biome check --apply .",
|
|
24
|
+
"ci": "biome ci .",
|
|
25
|
+
"tsc": "tsc",
|
|
23
26
|
"test": "vitest"
|
|
24
27
|
},
|
|
25
|
-
"dependencies": {
|
|
26
|
-
|
|
28
|
+
"dependencies": {},
|
|
29
|
+
"devDependencies": {
|
|
27
30
|
"remark-frontmatter": "^5.0.0",
|
|
28
31
|
"remark-gfm": "^4.0.0",
|
|
32
|
+
"remark-math": "^6.0.0",
|
|
29
33
|
"remark-mdx": "^3.0.1",
|
|
30
34
|
"remark-parse": "^11.0.0",
|
|
31
35
|
"traverse": "^0.6.8",
|
|
32
|
-
"unified": "^11.0.4"
|
|
33
|
-
},
|
|
34
|
-
"devDependencies": {
|
|
36
|
+
"unified": "^11.0.4",
|
|
35
37
|
"@biomejs/biome": "^1.6.3",
|
|
36
38
|
"@textlint/ast-node-types": "^14.0.4",
|
|
37
39
|
"@textlint/ast-tester": "^14.0.4",
|
|
@@ -40,9 +42,9 @@
|
|
|
40
42
|
"@types/traverse": "^0.6.36",
|
|
41
43
|
"bun-types": "latest",
|
|
42
44
|
"esbuild": "^0.20.2",
|
|
45
|
+
"micromark-extension-mdx-expression": "^3.0.0",
|
|
43
46
|
"textlint-scripts": "^14.0.4",
|
|
44
47
|
"textlint-tester": "^14.0.4",
|
|
45
|
-
"tsc": "^2.0.4",
|
|
46
48
|
"typescript": "^5.4.3",
|
|
47
49
|
"vitest": "^1.4.0"
|
|
48
50
|
},
|