-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
52 lines (52 loc) · 2.67 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"tasks": {
"build": "deno task compile",
"compile": "deno task compile:windows && deno task compile:macos-intel && deno task compile:macos-arm && deno task compile:linux-intel && deno task compile:linux-arm",
"compile:windows": "deno compile --allow-run --allow-write --target x86_64-pc-windows-msvc -o release/yt-dlp-hq.exe main.ts",
"compile:macos-intel": "deno compile --allow-run --allow-write --target x86_64-apple-darwin -o release/yt-dlp-hq-intel-mac main.ts",
"compile:macos-arm": "deno compile --allow-run --allow-write --target aarch64-apple-darwin -o release/yt-dlp-hq-arm-mac main.ts",
"compile:linux-intel": "deno compile --allow-run --allow-write --target x86_64-unknown-linux-gnu -o release/yt-dlp-hq-intel-linux main.ts",
"compile:linux-arm": "deno compile --allow-run --allow-write --target aarch64-unknown-linux-gnu -o release/yt-dlp-hq-arm-linux main.ts",
"dev": "deno run --watch main.ts",
"lint": "deno lint *.ts",
"fmt": "deno fmt *.ts"
},
"imports": {
"@c4spar/mock-command": "jsr:@c4spar/mock-command@^1.0.1",
"@c4spar/mock-fetch": "jsr:@c4spar/mock-fetch@^1.0.0",
"@cliffy/ansi": "jsr:@cliffy/[email protected]",
"@cliffy/command": "jsr:@cliffy/[email protected]",
"@cliffy/flags": "jsr:@cliffy/[email protected]",
"@cliffy/internal": "jsr:@cliffy/[email protected]",
"@cliffy/keycode": "jsr:@cliffy/[email protected]",
"@cliffy/keypress": "jsr:@cliffy/[email protected]",
"@cliffy/prompt": "jsr:@cliffy/[email protected]",
"@cliffy/table": "jsr:@cliffy/[email protected]",
"@cliffy/testing": "jsr:@cliffy/[email protected]",
"@std/assert": "jsr:@std/assert@~1.0.6",
"@std/async": "jsr:@std/async@~1.0.5",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/cli/parse-args": "jsr:@std/cli/parse-args@~1.0.6",
"@std/datetime": "jsr:@std/datetime@~0.225.2",
"@std/encoding": "jsr:@std/encoding@~1.0.5",
"@std/flags": "jsr:@std/flags@~1.0.7",
"@std/fmt": "jsr:@std/fmt@~1.0.2",
"@std/fs": "jsr:@std/fs@~1.0.4",
"@std/http": "jsr:@std/http@~1.0.7",
"@std/io": "jsr:@std/io@~0.224.9",
"@std/path": "jsr:@std/path@~1.0.6",
"@std/testing": "jsr:@std/[email protected]",
"@std/text": "jsr:@std/text@~1.0.7",
"sinon": "npm:[email protected]"
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": [".", "src/"],
"exclude": ["src/testdata/", "src/fixtures/**/*.ts"]
}
}