-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
76 lines (76 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "terminalgpt",
"version": "2.0.1",
"main": "lib/index.js",
"description": "Get GPT like chatGPT on your terminal",
"scripts": {
"tgpt": "node lib/index.js",
"test": "jest --ci --coverage --verbose",
"dev": "ts-node src/index.ts chat --temperature 0.7",
"dev:delete": "ts-node src/index.ts delete",
"postinstall": "tsc"
},
"homepage": "https://github.com/jucasoliveira/terminalGPT#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jucasoliveira/terminalGPT.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jucasoliveira/terminalGPT/issues"
},
"bin": {
"tgpt": "lib/index.js"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.2",
"@dqbd/tiktoken": "^1.0.16",
"@google/generative-ai": "^0.17.1",
"@types/gradient-string": "^1.1.5",
"@types/marked": "^6.0.0",
"@types/marked-terminal": "^6.0.1",
"@types/node": "^16.0.0",
"@types/prompts": "^2.4.8",
"axios": "^1.7.7",
"chalk": "^4.1.2",
"clipboardy": "2.3.0",
"commander": "^9.5.0",
"compromise": "^14.8.1",
"execa": "^9.3.1",
"gradient-string": "^2.0.2",
"hnswlib-node": "^3.0.0",
"lowdb": "^5.1.0",
"markdown": "^0.5.0",
"marked": "^9.1.6",
"marked-terminal": "^6.0.0",
"openai": "^4.17.4",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"typesync": "^0.11.1"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chalk": "^2.2.0",
"@types/clipboardy": "2.0.1",
"@types/eslint": "^8.44.2",
"@types/execa": "^2.0.0",
"@types/jest": "^29.5.4",
"@types/ora": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chai": "^4.3.7",
"eslint": "^8.47.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}