-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 987 Bytes
/
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
{
"name": "@themaximalist/llm.js",
"version": "0.8.0",
"description": "Simply LLM library for JavaScript",
"homepage": "https://llmjs.themaximalist.com",
"repository": "themaximal1st/llm.js",
"type": "module",
"main": "src/index.js",
"scripts": {
"test": "dotenv-extended mocha --retries 0"
},
"bin": {
"llm": "src/cli.js"
},
"keywords": [
"llm",
"large",
"language",
"model",
"gpt"
],
"author": "The Maximalist",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"cross-fetch": "^4.0.0",
"debug": "^4.3.4",
"diff": "^5.2.0",
"dotenv-extended": "^2.9.0",
"esbuild": "^0.20.2",
"eventemitter3": "^5.0.1",
"ollama": "^0.4.9",
"openai": "^4.35.8",
"prompt-sync": "^4.2.0",
"prompt-sync-history": "^1.0.1"
},
"devDependencies": {
"mocha": "^10.2.0"
}
}