@magic-markdown/cli 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +44 -0
  3. package/dist/index.js +12916 -0
  4. package/package.json +36 -0
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@magic-markdown/cli",
3
+ "version": "0.3.0",
4
+ "description": "Magic Markdown agent CLI (mdocs): read, review, comment on, suggest edits to, and sync clean Markdown workspaces.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/jasonbadeaux/magic-markdown.git",
10
+ "directory": "packages/cli"
11
+ },
12
+ "homepage": "https://github.com/jasonbadeaux/magic-markdown#readme",
13
+ "bugs": "https://github.com/jasonbadeaux/magic-markdown/issues",
14
+ "bin": {
15
+ "magic-markdown": "./dist/index.js",
16
+ "mdocs": "./dist/index.js"
17
+ },
18
+ "files": ["dist"],
19
+ "engines": {
20
+ "node": ">=22"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "scripts": {
26
+ "build": "tsc -p tsconfig.json && node build.mjs",
27
+ "dev": "tsx src/index.ts",
28
+ "test": "vitest run",
29
+ "prepublishOnly": "npm run build && npm test && node scripts/prepublish-check.mjs"
30
+ },
31
+ "devDependencies": {
32
+ "@mdocs/core": "0.2.0",
33
+ "esbuild": "^0.27.7",
34
+ "tsx": "^4.19.4"
35
+ }
36
+ }