-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "@themaximalist/ai.js",
"version": "0.2.7",
"description": "AI Toolkit for Node.js (LLM, Image Generation, Embeddings, Vector Search)",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "DEBUG=ai.js:* mocha",
"test:watch": "DEBUG=ai.js:* mocha --watch",
"examples": "bash examples/run_all.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themaximal1st/ai.js.git"
},
"bin": {
"ai": "src/cli.js"
},
"keywords": [
"ai",
"llm",
"openai",
"anthropic",
"gpt-3.5-turbo",
"gpt-4",
"claude-v1",
"claude-v2",
"stablediffusion"
],
"author": "The Maximalist",
"license": "MIT",
"bugs": {
"url": "https://github.com/themaximal1st/ai.js/issues"
},
"homepage": "https://aijs.themaximalist.com",
"dependencies": {
"@themaximalist/embeddings.js": "latest",
"@themaximalist/imagine.js": "latest",
"@themaximalist/llm.js": "latest",
"@themaximalist/vectordb.js": "latest",
"debug": "^4.3.4",
"dotenv": "^16.0.3"
},
"devDependencies": {
"dotenv-extended": "^2.9.0",
"mocha": "^10.2.0"
},
"peerDependencies": {
"@xenova/transformers": "^2.14.0"
},
"peerDependenciesMeta": {
"@xenova/transformers": {
"optional": true
}
}
}