-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "@writechoice/mint-cli",
"version": "0.0.40",
"description": "CLI tool for Mintlify documentation validation and utilities",
"main": "src/index.js",
"type": "module",
"bin": {
"writechoice": "bin/cli.js",
"wcc": "bin/cli.js"
},
"scripts": {
"test": "node --test 'test/**/*.test.js'",
"dev": "node bin/cli.js",
"release": "bash publish.sh",
"postinstall": "echo \"\\n⚠️ Don't forget to install Playwright browsers:\\n npx playwright install chromium\\n\""
},
"keywords": [
"mintlify",
"documentation",
"validation",
"cli",
"mdx",
"links",
"anchor",
"link-checker"
],
"author": "WriteChoice",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/writechoice/mint-cli.git"
},
"bugs": {
"url": "https://github.com/writechoice/mint-cli/issues"
},
"homepage": "https://github.com/writechoice/mint-cli#readme",
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"PUBLISH.md"
],
"dependencies": {
"@mdx-js/mdx": "^3.1.1",
"chalk": "^5.3.0",
"cheerio": "^1.2.0",
"commander": "^12.0.0",
"ora": "^8.0.0",
"playwright": "^1.40.0",
"puppeteer": "^22.0.0",
"turndown": "^7.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}