-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "vale-action",
"version": "1.0.4",
"description": "The official GitHub Action for Vale -- install, manage, and run Vale with ease.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"build-min": "ncc build src/main.ts --minify",
"format": "prettier --write **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/errata-ai/vale-action.git"
},
"keywords": [
"actions",
"container",
"toolkit",
"setup"
],
"author": "jdkato",
"license": "MIT",
"bugs": {
"url": "https://github.com/errata-ai/vale-action/issues"
},
"homepage": "https://github.com/errata-ai/vale-action",
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/exec": "^2.0.0",
"@actions/tool-cache": "^3.0.1",
"@types/node-fetch": "^2.6.13",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/node": "^24.12.4",
"@vercel/ncc": "^0.38.4",
"prettier": "^3.8.3",
"typescript": "^5.9.3"
}
}