diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-06-13 13:55:05 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-06-13 13:56:35 +0800 |
commit | 7b09e420ede2f9c92f5eaff28508ec10255414b7 (patch) | |
tree | fd78a3929b384dc5763e52247c26fab6803a6710 /deno/deno.json | |
parent | 01e4d2464bf1083361d9d7b6e7018cd7a52ea2df (diff) | |
download | crupest-7b09e420ede2f9c92f5eaff28508ec10255414b7.tar.gz crupest-7b09e420ede2f9c92f5eaff28508ec10255414b7.tar.bz2 crupest-7b09e420ede2f9c92f5eaff28508ec10255414b7.zip |
deno: move service manager to tools.
Diffstat (limited to 'deno/deno.json')
-rw-r--r-- | deno/deno.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/deno/deno.json b/deno/deno.json index 55ffcb8..569f97f 100644 --- a/deno/deno.json +++ b/deno/deno.json @@ -1,8 +1,7 @@ { - "workspace": ["./base", "./service-manager", "./mail-relay", "./tools" ], + "workspace": ["./base", "./mail-relay", "./tools" ], "tasks": { "compile:mail-relay": "deno task --cwd=mail-relay compile", - "compile:service-manager": "deno task --cwd=service-manager compile" }, "imports": { "@std/cli": "jsr:@std/cli@^1.0.19", @@ -12,6 +11,8 @@ "@std/expect": "jsr:@std/expect@^1.0.16", "@std/io": "jsr:@std/io@^0.225.2", "@std/path": "jsr:@std/path@^1.1.0", - "@std/testing": "jsr:@std/testing@^1.0.13" + "@std/testing": "jsr:@std/testing@^1.0.13", + "@std/dotenv": "jsr:@std/dotenv@^0.225.5", + "@std/fs": "jsr:@std/fs@^1.0.18" } } |