tpmjs/templates/vercel-executor/package.json
Ajax Davis 300083aff9 refactor(executor): switch vercel template from Next.js to Deno runtime
- 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.
2026-01-09 01:15:47 +10:00

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"
}
}