-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 650 Bytes
/
deno.json
File metadata and controls
32 lines (32 loc) · 650 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
{
"name": "@fedify/webfinger",
"version": "2.3.0",
"license": "MIT",
"exports": {
".": "./src/mod.ts"
},
"description": "WebFinger client library for Fedify",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"imports": {
"es-toolkit": "npm:es-toolkit@^1.42.0",
"fetch-mock": "npm:fetch-mock@^12.5.4"
},
"exclude": [
"dist",
"node_modules"
],
"publish": {
"exclude": [
"**/*.test.ts",
"tsdown.config.ts"
]
},
"tasks": {
"check": "deno fmt --check && deno lint && deno check src/*.ts",
"test": "deno test"
}
}