-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
36 lines (36 loc) · 1.04 KB
/
deno.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "@fedify/fedichatbot",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"exports": "./bot.ts",
"imports": {
"@deno-library/template": "jsr:@deno-library/template@^0.2.1",
"@fedify/botkit": "jsr:@fedify/botkit@^0.3.1",
"@fedify/denokv": "jsr:@fedify/denokv@^1.9.2",
"@fedify/fedify": "jsr:@fedify/fedify@^1.9.2",
"@kitsonk/kv-toolbox": "jsr:@kitsonk/kv-toolbox@^0.30.0",
"@langchain/core": "npm:@langchain/core@^1.1.7",
"@langchain/google-genai": "npm:@langchain/google-genai@^2.1.2",
"@logtape/logtape": "jsr:@logtape/logtape@^1.3.5",
"@std/dotenv": "jsr:@std/dotenv@^0.225.5",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@std/path": "jsr:@std/path@^1.1.3",
"tinyld": "npm:tinyld@^1.3.4",
"xss": "npm:xss@^1.0.15",
"zod": "npm:zod@^4.2.1"
},
"unstable": [
"kv",
"temporal"
],
"fmt": {
"exclude": [
"*.md",
".github"
]
},
"tasks": {
"check": "deno check *.ts && deno lint && deno fmt --check",
"dev": "deno serve -A --watch bot.ts"
}
}