-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 884 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 884 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": "autofix-action",
"version": "0.2.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt && node scripts/copy-templates.js",
"format": "prettier --write .",
"lint": "eslint . --ext .ts --max-warnings=0",
"test": "vitest run"
},
"dependencies": {
"@actions/artifact": "^2.3.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"prettier": "^3.1.1",
"typescript": "^5.4.5",
"vitest": "^3.2.4"
}
}