-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
47
48
49
50
51
52
{
"name": "gh-ai",
"version": "0.5.0",
"type": "module",
"description": "gh-cli extension that provides help in the creation of other gh extensions using AI and prompt-engineering",
"main": "gh-ai.js",
"bin": {
"gh-ai": "bin/gh-ai.js"
},
"directories": {
"doc": "doc",
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha",
"compile": "nearleyc src/parser/parser.ne -o src/grammar.js",
"railroad": "nearley-railroad src/parser/parser.ne -o ./debug/grammat.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gh-cli-for-education/gh-ai.git"
},
"keywords": [
"AI",
"prompt-engineering",
"gh-cli"
],
"author": "Raimon Mejías <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/gh-cli-for-education/gh-ai/issues"
},
"homepage": "https://github.com/gh-cli-for-education/gh-ai#readme",
"dependencies": {
"cli-spinners": "^2.9.2",
"commander": "^11.1.0",
"dotenv": "^16.4.1",
"moo-ignore": "^2.5.3",
"mustache": "^4.2.0",
"nearley": "^2.20.1",
"openai": "^4.27.0",
"ora": "^8.0.1",
"readline": "^1.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": "^5.0.3",
"mocha": "^10.2.0"
}
}