-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "codeheal",
"version": "1.0.0",
"description": "Github Action that tries to heal your code on build errors by opening a PR with potential code fixes.",
"main": "index.js",
"scripts": {
"build": "tsc",
"build:local": "npm run build 2>&1 | tee ./example/build_output.txt",
"heal:buildtime": "ts-node -r dotenv/config ./src/healBuildtime.ts",
"heal:runtime": "ts-node -r dotenv/config ./src/healRuntime.ts"
},
"author": "Gilbert Gathara",
"license": "MIT",
"engines": {
"node": ">=18"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@types/common-tags": "^1.8.1",
"@types/node": "^18.16.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"common-tags": "^1.8.2",
"dotenv": "^16.0.3",
"langchain": "^0.0.66",
"openai": "^3.2.1"
}
}