{
  "name": "md-padding",
  "version": "1.9.2",
  "description": "修复 Markdown 中的混排空格：中英文、数字、链接等。",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "directories": {
    "test": "test",
    "example": "example"
  },
  "files": [
    "bin",
    "dist",
    "index.d.ts",
    "*.json",
    "*.md"
  ],
  "bin": {
    "mdp": "./dist/bin/md-padding.js",
    "md-padding": "./dist/bin/md-padding.js"
  },
  "scripts": {
    "lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
    "docs": "typedoc --out docs src && touch docs/.nojekyll",
    "build": "tsc && chmod a+x dist/bin/*",
    "build-watch": "tsc --watch",
    "test": "jest",
    "coverage": "jest --coverage",
    "version": "npm run build && npm run docs",
    "semantic-release": "semantic-release"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/harttle/md-padding.git"
  },
  "author": "harttle <yangjvn@126.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/harttle/md-padding/issues"
  },
  "homepage": "https://github.com/harttle/md-padding#readme",
  "devDependencies": {
    "@babel/cli": "^7.25.7",
    "@babel/core": "^7.25.8",
    "@babel/preset-env": "^7.25.8",
    "@babel/preset-typescript": "^7.16.7",
    "@jest/transform": "^29.7.0",
    "@semantic-release/changelog": "^5.0.0",
    "@semantic-release/commit-analyzer": "^8.0.1",
    "@semantic-release/git": "^9.0.0",
    "@semantic-release/npm": "^7.0.2",
    "@semantic-release/release-notes-generator": "^9.0.0",
    "@types/jest": "^25.1.1",
    "@types/yargs": "^15.0.3",
    "@typescript-eslint/eslint-plugin": "^7.8.0",
    "@typescript-eslint/parser": "^7.8.0",
    "babel-plugin-transform-class-properties": "^6.10.2",
    "coveralls": "^3.0.9",
    "eslint": "8.56",
    "eslint-config-standard": "^14.1.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jest": "^23.6.0",
    "eslint-plugin-node": "^11.0.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "jest": "^29.7.0",
    "semantic-release": "^17.0.2",
    "source-map-support": "^0.5.16",
    "typedoc": "^0.26.9",
    "typescript": "^5.4.5"
  },
  "dependencies": {
    "yargs": "^17.7.2"
  },
  "release": {
    "branch": "master",
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "assets": [
            "docs",
            "package.json",
            "package-lock.json",
            "CHANGELOG.md"
          ],
          "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
        }
      ],
      "@semantic-release/github"
    ]
  }
}
