-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
32 lines (32 loc) · 1.3 KB
/
deno.json
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": "@dcode/dcmv",
"version": "1.0.2",
"description": "Automatically update .env references to other containers when moving a container outside/inside docker",
"exports": "./src/main.ts",
"publish": {
"include": [
"README.md",
"src/**/*.ts"
]
},
"tasks": {
"dev": "deno run -A src/main.ts",
"compile": "deno compile -A --output ./dcmv src/main.ts",
"test": "deno test -A tests",
"fmt": "deno fmt",
"lint": "deno lint",
"dev:inspect": "deno run --watch src/main.ts",
"compile:win_x86_64": "deno compile -A --target x86_64-pc-windows-msvc --output ./dcmv_win_x86_64.exe src/main.ts",
"compile:mac_arm64": "deno compile -A --target aarch64-apple-darwin --output ./dcmv_mac_arm64 src/main.ts",
"compile:mac_x86_64": "deno compile -A --target x86_64-apple-darwin --output ./dcmv_mac_x86_64 src/main.ts",
"compile:linux_x86_64": "deno compile -A --target x86_64-unknown-linux-gnu --output ./dcmv_linux_x86_64 src/main.ts",
"compile:linux_arm64": "deno compile -A --target aarch64-unknown-linux-gnu --output ./dcmv_linux_arm64 src/main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@std/cli": "jsr:@std/cli@^1.0.7",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"chalk": "npm:chalk@^5.3.0"
},
"license": "MIT License"
}