-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
42 lines (38 loc) · 1.13 KB
/
deno.jsonc
File metadata and controls
42 lines (38 loc) · 1.13 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
{
"name": "@diskuto/mastodon-sync",
"version": "1.1.0",
"exports": "./src/main.ts",
"tasks": {
"test": {
"command": "deno test",
"dependencies": ["check"]
},
"check": {
"command": "echo ok",
"dependencies": ["check:types", "check:publish"]
},
"check:types": {
"command": "deno check src/*.ts"
},
"check:publish": {
"command": "deno publish --dry-run --allow-dirty"
}
},
"imports": {
"@diskuto/client": "jsr:@diskuto/client@^0.10.2",
"@nfnitloop/better-iterators": "jsr:@nfnitloop/better-iterators@^1.5.0",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/fmt": "jsr:@std/fmt@^1.0.5",
"@std/html": "jsr:@std/html@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/toml": "jsr:@std/toml@^1.0.2",
"node-html-markdown": "npm:node-html-markdown@^1.3.0",
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7",
"zod": "npm:zod@^3.24.1",
},
"publish": {
"exclude": [
"**/*.test.ts"
]
}
}