invidious-companion/deno.json

21 lines
959 B
JSON
Raw Normal View History

2024-10-20 02:02:55 +02:00
{
"tasks": {
"dev": "deno run --allow-net --allow-env --allow-read --allow-sys=hostname --watch src/main.ts",
"compile": "deno compile --output invidious_companion --allow-net --allow-env --allow-sys=hostname --allow-read src/main.ts"
},
"imports": {
"hono": "jsr:@hono/hono@^4.6.5",
"hono/logger": "jsr:@hono/hono@^4.6.5/logger",
"hono/bearer-auth": "jsr:@hono/hono@^4.6.5/bearer-auth",
2024-11-01 12:07:27 +01:00
"youtubei.js": "https://deno.land/x/youtubei@v11.0.1-deno/deno.ts",
2024-10-20 02:02:55 +02:00
"jsdom": "https://esm.sh/jsdom@25.0.1",
"bgutils": "https://esm.sh/bgutils-js@3.0.0",
2024-11-01 12:07:27 +01:00
"estree": "npm:@types/estree",
2024-10-21 00:36:42 +02:00
"@willsoto/node-konfig-core": "npm:@willsoto/node-konfig-core@5.0.0",
"@willsoto/node-konfig-file": "npm:@willsoto/node-konfig-file@3.0.0",
"@willsoto/node-konfig-toml-parser": "npm:@willsoto/node-konfig-toml-parser@3.0.0",
2024-10-20 02:02:55 +02:00
"youtubePlayerReq": "./src/lib/helpers/youtubePlayerReq.ts"
},
"unstable": ["cron", "kv", "http"]
}