-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.8 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": "universal-llm",
"version": "0.0.1",
"description": "Powerful, configurable and usable Universal LLM modules for all your AI needs.",
"main": "lib/index.js",
"types": "types.d.ts",
"engines": {
"node": "18 || 20 || 22"
},
"readmeFilename": "README.md",
"scripts": {
"test": "npm run lint",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\"",
"test:ci": "npm run lint && node --test",
"test:openai": "npm run lint && node --env-file=.env --test test/openai/*",
"test:hf": "npm run lint && node --env-file=.env --test test/huggingface/*",
"test:ollama": "npm run lint && node --env-file=.env --test test/elevenlabs.js",
"test:elevenlabs": "npm run lint && node --env-file=.env --test test/ollama.js"
},
"keywords": [
"AI",
"LLM",
"GPT",
"Deep Learning",
"Fine-tuning",
"Text Generation",
"Speech Recognition",
"Image Generation"
],
"author": "Leon Polak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Universal-Code-Modules/universal-llm/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/Universal-Code-Modules/universal-llm#readme",
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@dip1059/safe-math-js": "^1.0.0",
"@huggingface/inference": "^2.6.7",
"@weblab-notebook/sentencepiece": "^0.1.3",
"elevenlabs-node": "^2.0.3",
"fluent-ffmpeg": "^2.1.2",
"from-exponential": "^1.1.1",
"music-metadata": "^7.14.0",
"ollama": "^0.5.0",
"openai": "^4.41.1",
"sharp": "^0.33.3",
"tiktoken": "^1.0.14"
}
}