-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.86 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 4.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "markmv",
"version": "1.29.1",
"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"
}
}
}