-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
42
{
"name": "commenter",
"version": "0.0.0",
"type": "module",
"description": "Comments on pull requests by files altered",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"test": "vitest run",
"lint": "eslint",
"readme": "npx action-docs -u && prettier --write README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freckle/commenter-action.git"
},
"author": "Freckle",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"js-yaml": "^4.1.1",
"minimatch": "^10.2.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^6.0.0",
"@types/node": "^24.12.2",
"@vercel/ncc": "^0.38.4",
"action-docs": "^2.5.1",
"eslint": "^10.2.1",
"jsdom": "^29.1.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5"
}
}