-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
46 lines (46 loc) · 1.08 KB
/
package.json
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
{
"name": "prbot",
"version": "1.0.0",
"private": true,
"description": "GPT-4 equipped with numeric calculation",
"author": "Don Syme",
"license": "ISC",
"homepage": "https://github.com/githubnext/gpt4-with-calc",
"keywords": [
"GPT-4"
],
"scripts": {
"build": "tsc",
"test": "jest --detectOpenHandles",
"prepare": "husky install",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@adobe/fetch": "^3.3.0",
"async": "^3.2.4",
"colors": "^1.4.0",
"debug": "~4.3.4",
"diff": "^5.1.0",
"fast-xml-parser": "^4.4.1",
"radash": "^8.0.0",
"yargs": "^17.0.10"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/debug": "~4.1.7",
"@types/diff": "^5.0.2",
"@types/node": "^18.0.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.4",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
}
}