-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.77 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "delegate-action",
"version": "1.0.0",
"description": "A GitHub Action that uses Copilot CLI to delegate tasks, create PRs, and assign reviewers",
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist",
"lint": "eslint src/**/*.js",
"format": "prettier --write \"**/*.{js,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,json,md,yml,yaml}\"",
"test": "vitest run --coverage",
"test:watch": "vitest",
"prepare": "lefthook install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChecKMarKDevTools/delegate-action.git"
},
"keywords": [
"github",
"actions",
"copilot",
"automation",
"pr",
"review",
"ai",
"delegate"
],
"author": "ChecKMarKDevTools",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChecKMarKDevTools/delegate-action/issues"
},
"homepage": "https://github.com/ChecKMarKDevTools/delegate-action#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.0",
"@github/copilot": "^0.0.423",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sanitize-filename": "^1.6.4",
"validator": "^13.15.35"
},
"devDependencies": {
"@checkmarkdevtools/commitlint-plugin-rai": "^0.1.6",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.2.1",
"lefthook": "^2.1.5",
"prettier": "^3.8.2",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=20.0.0"
},
"volta": {
"node": "22.13.1"
}
}