-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "inexus",
"version": "1.1.1",
"description": "Integration of GPT, Gemini dialogue api, an interface to achieve cross-platform interface calls, perfect support for tools",
"main": "dist/index.js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/wgx954418992/inexus.git"
},
"scripts": {
"test": "esno tests/chat.ts",
"build": "rm -rf ./dist && tsc",
"rm:d": "rm -rf $(find ./ -iname '.DS_Store')",
"clean": "rm -rf index.js && rm -rf $(find inexus -iname '*.js') && rm -rf $(find tests -iname '*.js')",
"clean:d": "rm -rf index.d.ts && rm -rf $(find inexus -iname '*.d.ts') && rm -rf $(find tests -iname '*.d.ts')"
},
"engines": {
"node": "^18 || ^19"
},
"keywords": [
"chatgpt",
"gemini",
"api",
"inexus"
],
"author": "Renew",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.10.0",
"eventsource-parser": "^1.1.2",
"gpt-3-encoder": "^1.1.4",
"js-yaml": "^4.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.14.6",
"@types/uuid": "^9.0.8",
"esno": "^0.16.3",
"typescript": "^4.9.5"
}
}