UNPKG

markmv

Version:

TypeScript CLI for markdown file operations with intelligent link refactoring

149 lines (148 loc) 4.97 kB
{ "name": "markmv", "version": "1.29.0", "description": "TypeScript CLI for markdown file operations with intelligent link refactoring", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "markmv": "./dist/cli.js", "markmv-mcp": "./dist/mcp-server.js", "markmv-api": "./dist/api-server.js" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./package.json": "./package.json" }, "scripts": { "build": "npm run generate:schemas && tsc", "dev": "npm run generate:schemas && tsc --watch", "generate:schemas": "node scripts/generate-schemas.js", "generate:schemas:watch": "nodemon --watch src/index.ts --watch src/commands/ --ext ts --exec \"npm run generate:schemas\"", "start": "node dist/cli.js", "mcp-server": "node dist/mcp-server.js", "api-server": "node dist/api-server.js", "test": "vitest", "test:run": "vitest run", "test:coverage": "vitest run --coverage", "test:cross-platform": "node scripts/test-cross-platform.js", "test:cross-platform:data": "node scripts/test-cross-platform.js --test-data-only", "test:cross-platform:cli": "node scripts/test-cross-platform.js --cli-only", "lint": "eslint src/ --max-warnings 20", "lint:fix": "eslint src/ --fix", "format": "tsx scripts/format.ts", "format:check": "tsx scripts/format-check.ts", "check": "npm run lint && npm run format:check && npm run typecheck", "typecheck": "tsc --noEmit", "docs": "typedoc", "docs:serve": "npx serve docs", "docs:view": "npm run docs && open docs/index.html", "docs:watch": "typedoc --watch", "docs:coverage": "node scripts/check-docs-coverage.js", "docs:markdown": "typedoc --options typedoc.markdown.json", "docs:readme": "npm run docs:markdown && node scripts/generate-readme-api.js", "docs:readme-generate": "npm run docs:markdown && node scripts/copy-typedoc-readme.js", "docs:coverage-report": "node scripts/check-docs-coverage.js > docs-coverage.txt", "docs:coverage-strict": "CI_STRICT_DOCS=true node scripts/check-docs-coverage.js", "docs:coverage-json": "OUTPUT_JSON=true node scripts/check-docs-coverage.js", "release": "semantic-release", "release:dry": "semantic-release --dry-run", "commit": "cz", "prepublishOnly": "npm run build && npm run test:run", "publish:npm": "npm publish --access public", "publish:dry": "npm pack --dry-run" }, "keywords": [ "markdown", "cli", "typescript", "links", "refactoring", "file-operations", "programmatic", "api", "library", "documentation", "cross-references" ], "author": "Joe Mearman", "license": "CC-BY-NC-SA-4.0", "devDependencies": { "@amanda-mitchell/semantic-release-npm-multiple": "^3.15.0", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@eslint/js": "^9.28.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^7.1.0", "@semantic-release/git": "^10.0.1", "@types/mdast": "^4.0.4", "@types/node": "^24.0.1", "@types/unist": "^3.0.0", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "@vitest/coverage-v8": "^3.2.3", "ajv": "^8.17.1", "commitizen": "^4.3.1", "conventional-changelog-conventionalcommits": "^9.0.0", "cz-conventional-changelog": "^3.3.0", "eslint": "^9.28.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.1", "jiti": "^2.4.2", "prettier": "^3.5.3", "prettier-plugin-jsdoc": "^1.3.2", "semantic-release": "^24.2.5", "ts-json-schema-generator": "^2.4.0", "tsx": "^4.19.4", "typedoc": "^0.28.5", "typedoc-material-theme": "^1.4.0", "typedoc-plugin-coverage": "^4.0.1", "typedoc-plugin-markdown": "^4.6.4", "typedoc-plugin-missing-exports": "^4.0.0", "typescript": "^5.0.0", "typescript-eslint": "^8.34.0", "vitest": "^3.2.3" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.12.3", "commander": "^14.0.0", "glob": "^11.0.3", "remark": "^15.0.0", "remark-parse": "^11.0.0", "remark-stringify": "^11.0.0", "unified": "^11.0.0", "unist-util-visit": "^5.0.0" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/**/*", "examples/**/*", "README.md", "CHANGELOG.md", "CONTRIBUTING.md" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/", "provenance": true }, "repository": { "type": "git", "url": "https://github.com/ExaDev/markmv.git" }, "homepage": "https://exadev.github.io/markmv/", "documentation": "https://exadev.github.io/markmv/", "bugs": { "url": "https://github.com/ExaDev/markmv/issues" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }