forked from potproject/code-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "codez",
"version": "0.3.24",
"description": "Codex in GitHub Actions",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write .",
"build": "esbuild src/index.ts --bundle --platform=node --target=node22 --format=cjs --minify --outfile=dist/index.js",
"test": "jest",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"__tests__/**/*.{ts,tsx}\"",
"release": "npx bumpp",
"prepare": "husky install"
},
"keywords": [
"github",
"actions",
"ai"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"adm-zip": "^0.5.11",
"axios": "^1.15.0",
"execa": "^9.5.0",
"fast-glob": "^3.3.3",
"ignore": "^7.0.3",
"octokit": "^4.1.3",
"openai": "^6.15.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@jest/globals": "^30.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"bumpp": "^10.1.1",
"esbuild": "^0.25.5",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^51.3.4",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^16.0.0",
"prettier": "^2.8.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format",
"eslint --fix",
"npm test -- --findRelatedTests",
"git add"
]
}
}