-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 KB
/
package.json
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
{
"name": "trimd",
"version": "0.11.1",
"description": "Trim HTML to Markdown from the command line.",
"main": "index.js",
"files": [
"cli.js",
"index.js"
],
"bin": {
"trimd": "cli.js"
},
"scripts": {
"prepare": "git config core.hooksPath .git-hooks",
"test": "node --test 'test/**/*.test.js'",
"start:web": "npx esbuild --servedir=web --watch --outdir=web/build --metafile=web/build/meta.json --bundle --format=esm --target=es6 web/index.js",
"build:web": "npx esbuild --outdir=web/build --metafile=web/build/meta.json --bundle --minify --format=esm --target=es6 web/index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/danburzo/trimd.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/danburzo/trimd/issues"
},
"homepage": "https://github.com/danburzo/trimd",
"devDependencies": {
"esbuild": "^0.24.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0"
},
"dependencies": {
"hast-util-from-html": "^2.0.3",
"hast-util-to-mdast": "^10.1.0",
"hast-util-to-text": "^4.0.2",
"opsh": "^1.1.0",
"rehype-dom-parse": "^5.0.2",
"rehype-parse": "^9.0.1",
"rehype-raw": "^7.0.0",
"rehype-remark": "^10.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"strip-markdown": "^6.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
}
}