-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 815 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 815 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
32
33
34
35
{
"name": "heal-trigger",
"version": "1.0.0",
"description": "A GitHub Action to trigger heal workflows",
"keywords": [
"github-action",
"heal",
"trigger"
],
"license": "MIT",
"author": "heal-dev",
"main": "src/index.ts",
"scripts": {
"build": "ncc build src/index.ts",
"test": "vitest run",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@typescript/native-preview": "^7.0.0-dev.20260225.1",
"@vercel/ncc": "^0.38.1",
"lefthook": "^1.11.13",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}