-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.94 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
{
"name": "zero-md-formatter",
"version": "1.4.7",
"description": "Zero-dependency GFM and MDX formatter with structural guardrails — optimized for AI-agent workflows",
"private": false,
"keywords": [
"markdown",
"markdown-formatter",
"gfm",
"github-flavored-markdown",
"mdx",
"zero-dependency",
"cli",
"formatter",
"guardrails",
"tables",
"fenced-code-blocks",
"ai-agents",
"agent-tools",
"hermes-skill"
],
"homepage": "https://github.com/CodeSigils/zero-md-formatter#readme",
"bugs": {
"url": "https://github.com/CodeSigils/zero-md-formatter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeSigils/zero-md-formatter.git"
},
"license": "MIT",
"author": "CodeSigils <toolsoftrade.web@gmail.com>",
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src/",
"guard/",
"SKILL.md"
],
"bin": {
"mdfmt": "src/index.js"
},
"main": "src/format-content.mjs",
"scripts": {
"test": "node scripts/check-all.js && node --test test/unit/*.test.js && node test/integration/cli.test.js && node scripts/check-consistency.js",
"test:structural": "node scripts/check-all.js",
"test:verbose": "node scripts/check-all.js test/fixtures/",
"test:unit": "node --test test/unit/*.test.js",
"test:integration": "node test/integration/cli.test.js",
"test:consistency": "node scripts/check-consistency.js",
"format": "node scripts/format-files.js --fix",
"format:check": "node scripts/format-files.js --check",
"verify": "node scripts/format-files.js --verify",
"release": "bash scripts/release.sh",
"version": "node scripts/sync-version.js && node scripts/sync-tap-payload.js && git add SKILL.md skills/markdown-formatter",
"install-hooks": "git config core.hooksPath .githooks",
"prepublishOnly": "npm run format:check && npm test"
},
"engines": {
"node": ">=24"
}
}