runtime-edge
Version:
Run any Edge Function from CLI or Node.js module.
61 lines • 1.44 kB
JSON
{
"name": "runtime-edge",
"description": "Run any Edge Function from CLI or Node.js module.",
"homepage": "https://runtime-edge.vercel.app/packages/runtime",
"version": "2.5.9",
"main": "dist/index.js",
"bin": {
"runtime-edge": "dist/cli/index.js"
},
"repository": {
"directory": "packages/runtime",
"type": "git",
"url": "git+https://github.com/khulnasoft/runtime-edge.git"
},
"bugs": {
"url": "https://github.com/khulnasoft/runtime-edge/issues"
},
"keywords": [
"edge",
"runtime-edge",
"functions",
"runtime",
"standard",
"web"
],
"dependencies": {
"async-listen": "3.0.1",
"mri": "1.2.0",
"picocolors": "1.0.0",
"pretty-ms": "7.0.1",
"signal-exit": "4.0.2",
"time-span": "4.0.0",
"@runtime-edge/format": "2.2.1",
"@runtime-edge/ponyfill": "2.4.2",
"@runtime-edge/vm": "3.2.0"
},
"devDependencies": {
"@types/node-fetch": "2",
"node-fetch": "2"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"license": "MPL-2.0",
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"clean": "pnpm run clean:node && pnpm run clean:build",
"clean:build": "rm -rf dist",
"clean:node": "rm -rf node_modules",
"postversion": "pnpm run build",
"prebuild": "pnpm run clean:build",
"test": "jest"
}
}