-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1021 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1021 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
36
37
38
39
40
41
42
43
44
45
{
"name": "groundkeeper",
"version": "1.0.0",
"description": "GitHub Actions repository maintenance tool",
"main": "dist/cli/src/index.js",
"bin": {
"groundkeeper": "dist/cli/src/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli/src/index.js",
"test": "jest",
"lint": "eslint packages/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"github",
"actions",
"maintenance",
"automation"
],
"author": "Lasha Efremidze",
"license": "MIT",
"files": [
"dist",
"prompts",
"action.yml"
],
"dependencies": {
"@github/copilot-sdk": "^0.1.16",
"commander": "^11.1.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}