-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
31 lines (31 loc) · 811 Bytes
/
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
{
"license": "AGPL-3.0-only",
"tasks": {
"start": "deno run --allow-net --watch main.ts"
},
"compilerOptions": {
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"jsx": "precompile",
"jsxImportSource": "hono/jsx"
},
"deploy": {
"project": "f725f80e-32c4-40c7-9e54-88c413b117b1",
"exclude": [
"**/node_modules"
],
"include": [],
"entrypoint": "main.ts"
},
"imports": {
"@nostr/tools": "jsr:@nostr/tools@^2.10.4",
"hono": "jsr:@hono/hono@^4.6.11",
"@libs/xml": "jsr:@libs/xml@^6.0.1",
"@nostr-dev-kit/ndk": "npm:@nostr-dev-kit/ndk@^2.10.7",
"@std/assert": "jsr:@std/assert@^1.0.8",
"@std/http": "jsr:@std/http@^1.0.11",
"feed": "npm:feed@^4.2.2",
"xml2js": "npm:xml2js@^0.6.2"
}
}