-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "ollama-wrapper",
"version": "0.0.1",
"description": "A wrapper for the Ollama API meant to ease development with Ollama",
"keywords": [
"Ollama",
"Wrapper",
"API"
],
"homepage": "https://github.com/Unity-Lab-AI/Ollama-Wrapper#readme",
"bugs": {
"url": "https://github.com/Unity-Lab-AI/Ollama-Wrapper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unity-Lab-AI/Ollama-Wrapper.git"
},
"license": "GPL-3.0",
"author": "hackall360/SpongeBong,Alfreddo",
"type": "module",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"start": "node index.js",
"test": "node --experimental-vm-modules --no-warnings ./node_modules/jest/bin/jest.js --config jest.config.js"
},
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"ollama": "^0.5.12"
},
"devDependencies": {
"eslint": "^9.19.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}