Files
markdownlint-rule-relative-…/package.json

58 lines
1.5 KiB
JSON

{
"name": "markdownlint-rule-relative-links",
"version": "0.0.0-development",
"description": "Custom rule for markdownlint to validate relative links.",
"keywords": [
"markdownlint",
"markdownlint-rule"
],
"homepage": "https://github.com/theoludwig/markdownlint-rule-relative-links#readme",
"bugs": {
"url": "https://github.com/theoludwig/markdownlint-rule-relative-links/issues"
},
"license": "MIT",
"author": "Théo LUDWIG <contact@theoludwig.fr>",
"repository": {
"type": "git",
"url": "https://github.com/theoludwig/markdownlint-rule-relative-links.git"
},
"files": [
"src"
],
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"lint:markdown": "markdownlint-cli2",
"lint:typescript": "tsc --noEmit",
"lint:oxlint": "oxlint . --deny-warnings --report-unused-disable-directives",
"lint:oxfmt": "oxfmt . --check",
"oxfmt": "oxfmt .",
"test": "node --test",
"release": "semantic-release"
},
"dependencies": {
"markdown-it": "14.1.0"
},
"devDependencies": {
"@types/markdown-it": "14.1.2",
"@types/node": "25.2.1",
"eslint-config-conventions": "21.2.0",
"markdownlint": "0.40.0",
"markdownlint-cli2": "0.20.0",
"oxfmt": "0.28.0",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.4",
"semantic-release": "25.0.3",
"typescript": "5.9.3"
},
"engines": {
"node": ">=22.0.0"
},
"public": true
}