-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "md-compresser",
"version": "1.0.0",
"description": "Multi-level optimization tool for Markdown compression",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"md-compress": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"cli": "ts-node src/cli.ts",
"test": "ts-node test/test.ts",
"demo": "ts-node examples/demo.ts",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": ["markdown", "compression", "optimization", "ast", "unified", "cli"],
"author": "",
"license": "ISC",
"files": ["dist"],
"devDependencies": {
"@types/node": "^24.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"hast-util-to-text": "^4.0.2",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-to-string": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
}
}