|
| 1 | +{ |
| 2 | + "name": "textlint-plugin-mdx", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "textlint plugin to lint MDX", |
| 5 | + "keywords": ["textlint", "textlintplugin", "plugin", "lint", "mdx"], |
| 6 | + "repository": "https://github.com/3w36zj6/textlint-plugin-mdx", |
| 7 | + "funding": { |
| 8 | + "type": "github", |
| 9 | + "url": "https://github.com/sponsors/3w36zj6" |
| 10 | + }, |
| 11 | + "license": "MIT", |
| 12 | + "author": "3w36zj6", |
| 13 | + "main": "lib/index.js", |
| 14 | + "files": ["lib"], |
| 15 | + "scripts": { |
| 16 | + "build": "esbuild --bundle src/*.ts --outdir=lib --platform=node", |
| 17 | + "clean": "rm -frv lib", |
| 18 | + "format": "biome format --write .", |
| 19 | + "format:check": "biome format .", |
| 20 | + "lint": "biome lint .", |
| 21 | + "lint:fix": "biome lint --apply .", |
| 22 | + "check": "biome check .", |
| 23 | + "test": "vitest" |
| 24 | + }, |
| 25 | + "dependencies": { |
| 26 | + "remark-footnotes": "^4.0.1", |
| 27 | + "remark-frontmatter": "^5.0.0", |
| 28 | + "remark-gfm": "^4.0.0", |
| 29 | + "remark-mdx": "^3.0.1", |
| 30 | + "remark-parse": "^11.0.0", |
| 31 | + "traverse": "^0.6.8", |
| 32 | + "unified": "^11.0.4" |
| 33 | + }, |
| 34 | + "devDependencies": { |
| 35 | + "@biomejs/biome": "^1.6.3", |
| 36 | + "@textlint/ast-node-types": "^14.0.4", |
| 37 | + "@textlint/ast-tester": "^14.0.4", |
| 38 | + "@textlint/types": "^14.0.4", |
| 39 | + "@types/node": "^20.12.2", |
| 40 | + "@types/traverse": "^0.6.36", |
| 41 | + "bun-types": "latest", |
| 42 | + "esbuild": "^0.20.2", |
| 43 | + "textlint-scripts": "^14.0.4", |
| 44 | + "textlint-tester": "^14.0.4", |
| 45 | + "tsc": "^2.0.4", |
| 46 | + "typescript": "^5.4.3", |
| 47 | + "vitest": "^1.4.0" |
| 48 | + }, |
| 49 | + "peerDependencies": { |
| 50 | + "typescript": "^5.0.0" |
| 51 | + } |
| 52 | +} |
0 commit comments