-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
53
54
{
"name": "langxlang",
"version": "0.7.0",
"description": "LLM wrapper for OpenAI GPT and Google Gemini and PaLM 2 models",
"main": "src/index.js",
"types": "src/index.d.ts",
"bin": {
"langxlang": "bin/cli.js"
},
"scripts": {
"test": "npm run mocha",
"pretest": "npm run lint",
"mocha": "mocha --bail test/*.test.js",
"lint": "standard",
"buildWeb": "browserify src/browser.js -o dist/langxlang.js",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extremeheat/LXL.git"
},
"keywords": [
"gpt",
"openai",
"gemini",
"palm",
"chat",
"ai",
"ml"
],
"author": "extremeheat",
"license": "MIT",
"bugs": {
"url": "https://github.com/extremeheat/LXL/issues"
},
"homepage": "https://github.com/extremeheat/LXL#readme",
"devDependencies": {
"basic-ipc": "^0.1.1",
"browserify": "^17.0.0",
"langxlang": "file:.",
"mocha": "^10.0.0",
"standard": "^17.0.0"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"caller": "^1.1.0",
"debug": "^4.3.4",
"fast-xml-parser": "^4.3.6",
"gpt-tokenizer": "^2.1.2",
"js-yaml": "^4.1.0",
"openai": "^4.28.0",
"ws": "^8.16.0"
}
}