-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
52 lines (52 loc) · 2.11 KB
/
Copy pathdeno.json
File metadata and controls
52 lines (52 loc) · 2.11 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
{
"name": "@yutamago/csync-azd",
"version": "1.0.0",
"tasks": {
"start": "deno run --allow-net --allow-read --allow-write --allow-run --allow-env --allow-sys main.ts",
"build": "deno run -A build.ts",
"build:win": "deno run -A build.ts win",
"build:mac": "deno run -A build.ts mac",
"build:linux": "deno run -A build.ts linux",
"compile": {
"dependencies": [
"compile:win",
"compile:mac",
"compile:linux"
]
},
"compile:local": "deno task compile:local:no-target --output bin/csync-azd main.ts",
"compile:win": {
"dependencies": [
"compile:win:x86_64"
]
},
"compile:win:x86_64": "deno task compile:local:no-target --target x86_64-pc-windows-msvc --output bin/csync-azd-windows-x86_64-v$VERSION.exe main.ts",
"compile:mac": {
"dependencies": [
"compile:mac:x86_64",
"compile:mac:arm64"
]
},
"compile:mac:x86_64": "deno task compile:local:no-target --target x86_64-apple-darwin --output bin/csync-azd-macos-x86_64-v$VERSION main.ts",
"compile:mac:arm64": "deno task compile:local:no-target --target aarch64-apple-darwin --output bin/csync-azd-macos-arm64-v$VERSION main.ts",
"compile:linux": {
"dependencies": [
"compile:linux:x86_64",
"compile:linux:arm64"
]
},
"compile:linux:x86_64": "deno task compile:local:no-target --target x86_64-unknown-linux-gnu --output bin/csync-azd-linux-x86_64-v$VERSION main.ts",
"compile:linux:arm64": "deno task compile:local:no-target --target aarch64-unknown-linux-gnu --output bin/csync-azd-linux-arm64-v$VERSION main.ts",
"compile:local:no-target": "deno compile --allow-net --allow-read --allow-write --allow-run --allow-env --allow-sys"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7",
"@cliffy/keypress": "jsr:@cliffy/keypress@^1.0.0-rc.7",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.7",
"@std/cli": "jsr:@std/cli@^1.0.17",
"@std/fmt": "jsr:@std/fmt@^1.0.7",
"@std/fs": "jsr:@std/fs@^1.0.17",
"@std/path": "jsr:@std/path@^1.0.9",
"ora": "npm:ora@7.0.1"
}
}