textlint-rule-no-dead-link
Version:
A textlint rule to check if all links are alive
73 lines • 1.86 kB
JSON
{
"name": "textlint-rule-no-dead-link",
"version": "6.2.3",
"description": "A textlint rule to check if all links are alive",
"keywords": [
"rule",
"textlint",
"textlintrule",
"link-checker"
],
"homepage": "https://github.com/textlint-rule/textlint-rule-no-dead-link",
"bugs": "https://github.com/textlint-rule/textlint-rule-no-dead-link/issues",
"repository": "textlint-rule/textlint-rule-no-dead-link",
"license": "MIT",
"author": "nodaguti",
"main": "lib/no-dead-link.js",
"types": "lib/no-dead-link.d.ts",
"files": [
"lib",
"src"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"minimatch": "^10.0.3",
"p-memoize": "^8.0.0",
"p-queue": "^8.1.0",
"textlint-rule-helper": "^2.3.1"
},
"devDependencies": {
"@textlint/ast-node-types": "^15.2.1",
"@textlint/types": "^15.2.1",
"@types/mocha": "^10.0.0",
"@types/node": "^24.3.0",
"lint-staged": "^16.1.5",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"textlint": "^15.2.1",
"textlint-scripts": "^15.2.1",
"textlint-tester": "^15.2.1",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"textlint": ">= 12.2.0"
},
"peerDependenciesMeta": {
"textlint": {
"optional": true
}
},
"scripts": {
"build": "textlint-scripts build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "pnpm run --if-present build",
"test": "npm run type-check && textlint-scripts test",
"type-check": "tsc --noEmit",
"watch": "textlint-scripts build --watch"
}
}