-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeno.json
More file actions
50 lines (50 loc) · 1.42 KB
/
deno.json
File metadata and controls
50 lines (50 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
{
"name": "@runt/ai",
"version": "0.12.0",
"description": "Runtime AI Clients",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/runtimed/anode.git"
},
"exports": {
".": "./mod.ts"
},
"imports": {
"@llamaindex/openai": "npm:@llamaindex/openai@^0.4.16",
"@llamaindex/readers": "npm:@llamaindex/readers@^3.1.18",
"llamaindex": "npm:llamaindex@^0.11.26",
"@runt/lib": "jsr:@runt/lib@^0.12.0",
"@runt/schema": "jsr:@runt/schema@^0.12.0",
"npm:pyodide": "npm:pyodide@^0.27.7",
"@std/async": "jsr:@std/async@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"npm:@livestore/livestore": "npm:@livestore/livestore@^0.3.1",
"@openai/openai": "jsr:@openai/openai@^4.98.0",
"npm:ollama": "npm:ollama@^0.5.16",
"strip-ansi": "npm:strip-ansi@^7.1.0",
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.0.5"
},
"tasks": {
"check": "deno check mod.ts src/*.ts examples/*.ts",
"fmt": "deno fmt",
"lint": "deno lint"
},
"publish": {
"include": [
"mod.ts",
"openai-client.ts",
"ollama-client.ts",
"mcp-client.ts",
"mcp-config.example.json",
"MCP_INTEGRATION.md",
"shared-types.ts",
"tool-registry.ts",
"media-utils.ts",
"notebook-context.ts",
"vector-store.ts",
"README.md"
],
"exclude": ["**/*.test.ts", "**/test_*.ts", "examples/"]
}
}