UNPKG

vcvm

Version:

One-command path to fresh, isolated Linux micro-VMs on Vercel

70 lines (69 loc) 1.63 kB
{ "name": "vcvm", "version": "0.0.1", "description": "One-command path to fresh, isolated Linux micro-VMs on Vercel", "main": "dist/cli.js", "type": "module", "bin": { "vm": "dist/cli.js" }, "files": [ "dist/**/*" ], "keywords": [ "vercel", "sandbox", "vm", "virtual-machine", "cli", "development", "devtools" ], "author": "Max Leiter", "license": "MIT", "homepage": "https://github.com/maxleiter/vm-cli#readme", "repository": { "type": "git", "url": "git+https://github.com/maxleiter/vm-cli.git" }, "bugs": { "url": "https://github.com/maxleiter/vm-cli/issues" }, "engines": { "node": ">=18.0.0" }, "scripts": { "build": "node build.mjs", "build:prod": "node build.mjs --prod", "dev": "node build.mjs --watch", "start": "node dist/cli.js", "type-check": "tsc --noEmit", "test": "echo \"No tests yet\" && exit 0", "prepublishOnly": "npm run type-check && npm run build:prod", "release": "./scripts/release.sh" }, "dependencies": { "@inkjs/ui": "^2.0.0", "@vercel/sandbox": "0.0.13", "@vercel/sdk": "^1.9.0", "chalk": "^5.4.1", "get-port": "^7.1.0", "ink": "^6.0.1", "inquirer": "^12.7.0", "meow": "^13.2.0", "ms": "^2.1.3", "node-ssh": "^13.2.1", "ora": "^8.2.0", "react": "^19.1.0", "xdg-app-paths": "^8.3.0" }, "devDependencies": { "@types/inquirer": "^9.0.7", "@types/ms": "^0.7.34", "@types/node": "^22.13.10", "@types/react": "^19.0.10", "chokidar": "^4.0.3", "esbuild": "^0.24.2", "typescript": "^5.8.3" } }