-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
68 lines (68 loc) · 2.4 KB
/
deno.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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@subql/ai-app-framework",
"version": "0.0.0",
"exports": {
"./cli": "./src/index.ts",
".": "./src/mod.ts"
},
"tasks": {
"dev": "deno run --watch src/index.ts",
"check-ts": "deno check src/index.ts",
"test": "deno test --allow-env --allow-net --allow-read --allow-run --allow-write --allow-sys --unstable-worker-options",
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/[email protected]/mod.ts"
},
"imports": {
"@lancedb/lancedb": "npm:@lancedb/lancedb@^0.10.0",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.10.3",
"@sinclair/typebox": "npm:@sinclair/typebox@^0.33.11",
"@std/archive": "jsr:@std/archive@^0.225.4",
"@std/assert": "jsr:@std/assert@1",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/expect": "jsr:@std/expect@^1.0.4",
"@std/fmt": "jsr:@std/fmt@^1.0.2",
"@std/fs": "jsr:@std/fs@^1.0.3",
"@std/io": "jsr:@std/io@^0.224.8",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/streams": "jsr:@std/streams@^1.0.8",
"@std/tar": "jsr:@std/tar@^0.1.3",
"@types/estree": "npm:@types/estree@^1.0.5",
"@types/mdast": "npm:@types/mdast@^4.0.4",
"@types/yargs": "npm:@types/yargs@^17.0.33",
"apache-arrow": "npm:apache-arrow@^17.0.0",
"esbuild": "npm:esbuild@^0.24.0",
"form-data": "npm:form-data@^4.0.0",
"github-slugger": "npm:github-slugger@^2.0.0",
"glob": "npm:glob@^11.0.0",
"hono": "npm:hono@^4.6.2",
"mdast": "npm:mdast@^3.0.0",
"mdast-util-from-markdown": "npm:mdast-util-from-markdown@^2.0.1",
"mdast-util-mdx": "npm:mdast-util-mdx@^3.0.0",
"mdast-util-to-markdown": "npm:mdast-util-to-markdown@^2.1.0",
"mdast-util-to-string": "npm:mdast-util-to-string@^4.0.0",
"micromark-extension-mdxjs": "npm:micromark-extension-mdxjs@^3.0.0",
"ollama": "npm:ollama@^0.5.9",
"openai": "npm:openai@^4.68.3",
"ora": "npm:ora@^8.1.0",
"pino": "npm:pino@^9.5.0",
"pino-pretty": "npm:pino-pretty@^11.3.0",
"unist-builder": "npm:unist-builder@^4.0.0",
"unist-util-filter": "npm:unist-util-filter@^5.0.1",
"vscode-jsonrpc": "npm:vscode-jsonrpc@^8.2.1",
"yargs": "npm:yargs@^17.7.2"
},
"publish": {
"exclude": [
".github",
".hooks",
".lintstagedrc",
"Dockerfile",
"RESEARCH.md",
"subquery-delegator"
]
},
"lint": {
"rules": {
"exclude": ["no-slow-types"]
}
}
}