-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
42 lines (42 loc) · 952 Bytes
/
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
{
"name": "markdown-read",
"version": "3.8.0",
"description": "turn url or html file to markdown",
"main": "./dist/index.js",
"packageManager": "[email protected]",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest",
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build"
},
"bin": {
"markdown": "dist/cli.js"
},
"author": "shanyue",
"license": "ISC",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"@types/jsdom": "^21.1.7",
"@types/turndown": "^5.0.5",
"jsdom": "^25.0.0",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2"
},
"repository": "shfshanyue/markdown-read",
"devDependencies": {
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^2.1.1",
"chai": "^5.1.1",
"mocha": "^10.7.3",
"npm-check-updates": "^17.1.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1",
"yargs": "^17.7.2"
}
}