-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 858 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 858 Bytes
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": "goblln",
"version": "0.2.0-alpha.1",
"description": "LLMs in Node.js",
"main": "src/index.js",
"bin": {
"goblln": "bin/goblln.js"
},
"scripts": {
"build": "npm run lint",
"lint": "eslint --fix",
"start": "node bin/goblln",
"start-server": "node bin/goblln",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sogouda/goblln.git"
},
"keywords": [
"llm",
"large",
"language",
"model"
],
"author": "Ashlynn Juniper",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/sogouda/goblln/issues"
},
"homepage": "https://github.com/sogouda/goblln#readme",
"dependencies": {
"express": "^4.19.2",
"ollama": "^0.5.2"
},
"devDependencies": {
"eslint": "^9.6.0",
"eslint-plugin-no-floating-promise": "^2.0.0"
}
}