-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 976 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 976 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
41
42
43
44
45
46
47
48
49
{
"name": "tune-sdk",
"version": "0.3.6",
"description": "chat with llm in a text file. core package",
"main": "dist/tune.js",
"module": "dist/tune.mjs",
"bin": {
"tune": "bin/cli.js",
"tune-sdk": "bin/cli.js"
},
"exports": {
".": {
"require": "./dist/tune.js",
"import": "./dist/tune.mjs"
},
"./cli": {
"require": "./src/cli.js"
},
"./rpc": {
"require": "./src/rpc.js"
},
"./contextws": {
"require": "./src/contextws.js"
},
"./man": {
"require": "./src/man.js"
}
},
"keywords": [
"ai",
"chat",
"llm"
],
"author": "Ilya Ovdin <iovdin@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/iovdin/tune"
},
"license": "MIT",
"scripts": {
"test": "node test/index.js",
"test:watch": "node --watch test/index.js"
},
"dependencies": {
"commander": "^14.0.3",
"mime-types": "^3.0.2",
"ws": "^8.20.0"
}
}