-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 938 Bytes
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
{
"name": "hyperhawk",
"version": "1.11.0",
"description": "GitHub Action that scans markdown files for broken links",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --minify --source-map --license licenses.txt -t",
"build:dev": "ncc build src/index.ts -o dist",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"test:snapshot": "tsx tests/snapshot.ts | diff tests/expected-output.txt -"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0"
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/node": "^20.0.0",
"@vercel/ncc": "^0.38.0",
"tsx": "^4.21.0",
"typescript": "^5.4.0"
},
"keywords": [
"github-action",
"link-checker",
"markdown"
],
"license": "MIT"
}