invidious-companion/deno.json

26 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2024-10-19 21:02:55 -03:00
{
"tasks": {
2024-12-09 16:57:04 -03:00
"dev": "deno run --allow-import=github.com:443,jsr.io:443,raw.githubusercontent.com:443,esm.sh:443,deno.land:443 --allow-net --allow-env --allow-sys=hostname --allow-read --allow-write=/var/tmp/youtubei.js --watch src/main.ts",
2024-12-12 18:48:03 -03:00
"compile": "deno compile --include ./src/lib/helpers/youtubePlayerReq.ts --include ./src/lib/helpers/getFetchClient.ts --output invidious_companion --allow-import=github.com:443,jsr.io:443,raw.githubusercontent.com:443,esm.sh:443,deno.land:443 --allow-net --allow-env --allow-read --allow-sys=hostname --allow-write=/var/tmp/youtubei.js src/main.ts"
2024-10-19 21:02:55 -03:00
},
"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-12-17 21:49:13 -03:00
"prom-client": "npm:prom-client@^15.1.3",
2024-12-12 17:45:57 -03:00
"youtubei.js": "https://raw.githubusercontent.com/LuanRT/YouTube.js/refs/tags/v12.2.0-deno/deno.ts",
"youtubei.js/Utils": "https://raw.githubusercontent.com/LuanRT/YouTube.js/refs/tags/v12.2.0-deno/deno/src/utils/Utils.ts",
"youtubei.js/NavigationEndpoint": "https://raw.githubusercontent.com/LuanRT/YouTube.js/refs/tags/v12.2.0-deno/deno/src/parser/classes/NavigationEndpoint.ts",
2024-12-09 17:58:34 -03:00
"jsdom": "npm:jsdom@25.0.1",
2024-12-09 16:57:04 -03:00
"bgutils": "https://esm.sh/bgutils-js@3.1.0",
"estree": "https://esm.sh/@types/estree@1.0.6",
2024-10-20 19:36:42 -03: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-11-17 20:08:30 -03:00
"youtubePlayerReq": "./src/lib/helpers/youtubePlayerReq.ts",
2024-12-12 17:36:38 -03:00
"getFetchClient": "./src/lib/helpers/getFetchClient.ts",
2024-11-17 20:08:30 -03:00
"googlevideo": "npm:googlevideo@2.0.0"
2024-10-19 21:02:55 -03:00
},
"unstable": ["cron", "kv", "http"]
}