AK-21/Graphite-Industrial-Intelligence
0
1{2 "name": "mdast-util-mdxjs-esm",3 "version": "2.0.1",4 "description": "mdast extension to parse and serialize MDX.js ESM (import/exports)",5 "license": "MIT",6 "keywords": [7 "unist",8 "mdast",9 "mdast-util",10 "util",11 "utility",12 "markdown",13 "markup",14 "mdx",15 "mdxjs",16 "esm",17 "import",18 "export",19 "extension"20 ],21 "repository": "syntax-tree/mdast-util-mdxjs-esm",22 "bugs": "https://github.com/syntax-tree/mdast-util-mdxjs-esm/issues",23 "funding": {24 "type": "opencollective",25 "url": "https://opencollective.com/unified"26 },27 "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",28 "contributors": [29 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"30 ],31 "sideEffects": false,32 "type": "module",33 "exports": "./index.js",34 "files": [35 "lib/",36 "index.d.ts",37 "index.js"38 ],39 "dependencies": {40 "@types/estree-jsx": "^1.0.0",41 "@types/hast": "^3.0.0",42 "@types/mdast": "^4.0.0",43 "devlop": "^1.0.0",44 "mdast-util-from-markdown": "^2.0.0",45 "mdast-util-to-markdown": "^2.0.0"46 },47 "devDependencies": {48 "@types/node": "^20.0.0",49 "acorn": "^8.0.0",50 "c8": "^8.0.0",51 "micromark-extension-mdxjs-esm": "^2.0.0",52 "prettier": "^3.0.0",53 "remark-cli": "^11.0.0",54 "remark-preset-wooorm": "^9.0.0",55 "type-coverage": "^2.0.0",56 "typescript": "^5.0.0",57 "unist-util-remove-position": "^5.0.0",58 "xo": "^0.55.0"59 },60 "scripts": {61 "prepack": "npm run build && npm run format",62 "build": "tsc --build --clean && tsc --build && type-coverage",63 "format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",64 "test-api-prod": "node --conditions production test.js",65 "test-api-dev": "node --conditions development test.js",66 "test-api": "npm run test-api-dev && npm run test-api-prod",67 "test-coverage": "c8 --100 --reporter lcov npm run test-api",68 "test": "npm run build && npm run format && npm run test-coverage"69 },70 "prettier": {71 "bracketSpacing": false,72 "semi": false,73 "singleQuote": true,74 "tabWidth": 2,75 "trailingComma": "none",76 "useTabs": false77 },78 "remarkConfig": {79 "plugins": [80 "remark-preset-wooorm"81 ]82 },83 "typeCoverage": {84 "atLeast": 100,85 "detail": true,86 "ignoreCatch": true,87 "strict": true88 },89 "xo": {90 "overrides": [91 {92 "files": [93 "**/*.ts"94 ],95 "rules": {96 "@typescript-eslint/ban-types": "off",97 "@typescript-eslint/consistent-type-definitions": "off"98 }99 }100 ],101 "prettier": true,102 "rules": {103 "unicorn/prefer-at": "off"104 }105 }106}107 