fvttt
Version:
FVTTT is a CLI tool for tunneling Foundry VTT application through Cloudflare.
36 lines (35 loc) • 844 B
JSON
{
"name": "fvttt",
"version": "4.5.0",
"type": "module",
"description": "FVTTT is a CLI tool for tunneling Foundry VTT application through Cloudflare.",
"author": "phenomen",
"license": "MIT",
"scripts": {
"start": "bun ./bin/index.js",
"compile:windows": "bun build ./bin/index.js --compile --target=bun-windows-x64-modern --minify --outfile fvttt",
"compile:linux": "bun build ./bin/index.js --compile --target=bun-linux-x64-modern --minify --outfile fvttt"
},
"exports": {
".": "./bin/index.js"
},
"main": "./bin/index.js",
"bin": {
"fvttt": "bin/index.js"
},
"files": [
"bin"
],
"keywords": [
"foundryvtt",
"tunnel",
"cloudflare"
],
"dependencies": {
"@clack/prompts": "^0.11.0",
"cloudflared": "^0.7.0"
},
"trustedDependencies": [
"cloudflared"
]
}