- Replace Next.js app router with pure Deno API functions - Use vercel-deno@3.0.0 community runtime for native HTTP imports - Deno natively supports importing from esm.sh URLs - Simplified template: just api/health.ts and api/execute-tool.ts - Remove unnecessary React/Next.js dependencies - Update README with new architecture documentation This matches the Railway executor's Deno-based approach but runs on the user's own Vercel account. The Deno runtime enables dynamic imports from esm.sh without any special setup.
12 lines
256 B
JSON
12 lines
256 B
JSON
{
|
|
"name": "tpmjs-executor",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "TPMJS Tool Executor - Deploy your own executor using Deno on Vercel",
|
|
"scripts": {
|
|
"dev": "vercel dev"
|
|
},
|
|
"devDependencies": {
|
|
"vercel": "^39.0.0"
|
|
}
|
|
}
|