remark-flexible-markers
Version:
Remark plugin to add custom mark element with customizable properties in markdown
95 lines (94 loc) • 2.61 kB
JSON
{
"name": "remark-flexible-markers",
"version": "1.3.0",
"description": "Remark plugin to add custom mark element with customizable properties in markdown",
"type": "module",
"exports": "./dist/esm/index.js",
"main": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --build && type-coverage",
"format": "npm run prettier && npm run lint",
"prettier": "prettier --write .",
"lint": "eslint .",
"test": "vitest --watch=false",
"test:watch": "vitest",
"test:file": "vitest without_options.spec.ts",
"test:regex": "vitest regex.spec.ts",
"prepack": "npm run build",
"prepublishOnly": "npm run test && npm run format && npm run test-coverage",
"test-coverage": "vitest run --coverage"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipikuka/remark-flexible-markers.git"
},
"keywords": [
"unified",
"mdast",
"markdown",
"MDX",
"remark",
"plugin",
"remark plugin",
"remark marker",
"remark markers",
"remark flexible markers"
],
"author": "ipikuka <talatkuyuk@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ipikuka/remark-flexible-markers#readme",
"bugs": {
"url": "https://github.com/ipikuka/remark-flexible-markers/issues"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/node": "^22.15.29",
"@vitest/coverage-v8": "^3.2.1",
"@vitest/eslint-plugin": "^1.2.1",
"dedent": "^1.6.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"rehype-format": "^5.0.1",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"rimraf": "^5.0.10",
"type-coverage": "^2.29.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"unified": "^11.0.5",
"vfile": "^6.0.3",
"vitest": "^3.2.1"
},
"dependencies": {
"@types/mdast": "^4.0.4",
"unist-builder": "^4.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-find-all-after": "^5.0.0",
"unist-util-find-all-before": "^5.0.0",
"unist-util-find-between-all": "^1.1.0",
"unist-util-visit": "^5.0.0"
},
"peerDependencies": {
"unified": "^11"
},
"sideEffects": false,
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"strict": true
}
}