-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
36 lines (35 loc) · 1006 Bytes
/
deno.jsonc
File metadata and controls
36 lines (35 loc) · 1006 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
{
"name": "@diskuto/rss-sync",
"version": "2.0.2",
"exports": "./main.ts",
"publish": {
"exclude": [
"**/*.test.*"
]
},
"tasks": {
"test": {
"dependencies": ["check"],
"command": "deno test"
},
"check": {
"dependencies": ["check:types", "check:publish"],
"command": "echo ok"
},
"check:publish": {
"command": "deno publish --dry-run --allow-dirty"
},
"check:types": {
"command": "deno check main.ts"
}
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7",
"@diskuto/client": "jsr:@diskuto/client@^0.10.2",
"@logtape/logtape": "jsr:@logtape/logtape@^0.8.1",
"@mikaelporttila/rss": "jsr:@mikaelporttila/rss@^1.1.1",
"@std/toml": "jsr:@std/toml@^1.0.2",
"node-html-markdown": "npm:node-html-markdown@^1.3.0",
"zod": "npm:zod@^3.24.1"
}
}