forked from fedify-dev/fedify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
87 lines (87 loc) · 2.03 KB
/
deno.json
File metadata and controls
87 lines (87 loc) · 2.03 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@fedify/cli",
"version": "2.1.0",
"license": "MIT",
"exports": "./src/mod.ts",
"imports": {
"@hongminhee/localtunnel": "jsr:@hongminhee/localtunnel@^0.3.0",
"@inquirer/prompts": "npm:@inquirer/prompts@^7.8.4",
"@jimp/core": "npm:@jimp/core@^1.6.0",
"@jimp/wasm-webp": "npm:@jimp/wasm-webp@^1.6.0",
"@poppanator/http-constants": "npm:@poppanator/http-constants@^1.1.1",
"chalk": "npm:chalk@^5.6.2",
"cli-table3": "npm:cli-table3@^0.6.5",
"fetch-mock": "npm:fetch-mock@^12.5.4",
"hono": "jsr:@hono/hono@^4.8.3",
"icojs": "npm:icojs@^0.19.5",
"inquirer-toggle": "npm:inquirer-toggle@^1.0.1",
"ora": "npm:ora@^8.2.0",
"shiki": "npm:shiki@^1.6.4",
"smol-toml": "npm:smol-toml@^1.6.0",
"srvx": "npm:srvx@^0.8.7",
"valibot": "jsr:@valibot/valibot@^1.2.0",
"#kv": "./src/kv.node.ts"
},
"exclude": [
"dist/",
"fedify-cli-*.tar.xz",
"fedify-cli-*.tgz",
"fedify-cli-*.zip"
],
"publish": {
"exclude": [
"**/*.test.ts",
"tsdown.config.ts",
"scripts/"
]
},
"tasks": {
"codegen": "deno task -f @fedify/vocab compile",
"check": {
"command": "deno fmt --check && deno lint && deno check src/**/*.ts",
"dependencies": [
"codegen"
]
},
"run": {
"command": "deno run --allow-all src/mod.ts",
"dependencies": [
"codegen"
]
},
"runi": "deno run --allow-all src/mod.ts",
"pack": {
"command": "deno run -A scripts/pack.ts",
"dependencies": [
"codegen"
]
},
"test": {
"command": "deno test --allow-all",
"dependencies": [
"codegen"
]
},
"test-init": {
"command": "FEDIFY_TEST_MODE=true deno run --allow-all src/init/test/mod.ts test-init",
"dependencies": [
"codegen"
]
}
},
"fmt": {
"exclude": [
"src/init/templates/**"
]
},
"lint": {
"exclude": [
"src/init/templates/**"
]
},
"test": {
"exclude": [
"src/init/test/**"
]
}
}