-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 833 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 833 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
{
"name": "doc-detective-github-action",
"version": "1.4.1",
"description": "Validate doc content by treating docs as testable assertions for a product.",
"main": "dist/index.js",
"scripts": {
"build": "node esbuild.config.mjs",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doc-detective/github-action.git"
},
"author": "Manny Silva",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/doc-detective/github-action/issues"
},
"homepage": "https://github.com/doc-detective/github-action#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@types/node": "^25.3.2",
"esbuild": "^0.27.3",
"typescript": "^5.9.3"
}
}