-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "tsdoc-link-check",
"version": "0.1.0",
"description": "A simple tool to check the broken links in your TSDoc comments",
"license": "MIT",
"contributors": [
{
"name": "Ali Emir Sen",
"email": "[email protected]",
"url": "https://github.com/aliemir"
}
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"tsdoc-link-check": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aliemir/tsdoc-link-check.git"
},
"bugs": {
"url": "https://github.com/aliemir/tsdoc-link-check/issues"
},
"keywords": [
"tsdoc",
"comments",
"link-check"
],
"scripts": {
"build": "tsup --minify",
"start": "tsup --watch",
"test": "jest"
},
"devDependencies": {
"@babel/types": "^7.22.4",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "2.8.8",
"ts-jest": "^29.1.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@babel/parser": "^7.22.4",
"@microsoft/tsdoc": "^0.14.2",
"chalk": "^4.1.2",
"commander": "9.4.1",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
"globby": "^11.1.0",
"ora": "^5.4.1"
}
}