-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
33 lines (33 loc) · 1.94 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
{
"tasks": {
"dev": "deno run --allow-sys --allow-read --allow-env --allow-net --watch src/dev/mysql.ts",
"main": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts",
"refreshBlogs": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshBlogs",
"refreshPodcasts": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshPodcasts",
"refreshTwitter": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshTwitter",
"refreshYoutube": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshYoutube",
"refreshYoutubeStats": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshYoutubeStats",
"refreshTwitchChannels": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshTwitchChannels",
"refreshTwitchGames": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshTwitchGames",
"refreshTwitchClips": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshTwitchClips",
"refreshTwitchStreams": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts refreshTwitchStreams",
"publishDiscord": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts publishDiscord",
"publishTwitter": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts publishTwitter",
"publishBluesky": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts publishBluesky",
"publishMastodon": "deno run --allow-sys --allow-read --allow-env --allow-net src/main.ts publishMastodon"
},
"fmt": {
"options": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 3,
"singleQuote": false,
"proseWrap": "preserve"
},
"files": {
"exclude": [
"./_site"
]
}
}
}