-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.49 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
56
57
58
59
60
61
{
"name": "@umbrelladocs/linkspector",
"version": "0.3.13",
"description": "Uncover broken links in your content.",
"type": "module",
"main": "linkspector.js",
"repository": {
"type": "git",
"url": "git+https://github.com/UmbrellaDocs/linkspector.git"
},
"keywords": [
"linkspector",
"links analysis",
"url inspection",
"link checker",
"link validation",
"link verification",
"link testing",
"link testing tool",
"link testing library",
"link testing utility",
"link testing package",
"markdown link testing",
"markdown link testing tool",
"markdown link check",
"markdown link checker",
"markdown link validation"
],
"bin": {
"linkspector": "./index.js"
},
"scripts": {
"prettier:check": "npx prettier --check .",
"prettier:format": "npx prettier --write .",
"test": "vitest"
},
"author": "Gaurav Nelson",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/UmbrellaDocs/linkspector/issues"
},
"homepage": "https://github.com/UmbrellaDocs/linkspector#readme",
"dependencies": {
"commander": "^12.1.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",
"ignore": "^6.0.2",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"kleur": "^4.1.5",
"ora": "^8.1.1",
"puppeteer": "^23.10.3",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"vitest": "^2.1.8"
}
}