UNPKG

ssr

Version:

cli for react/vue2/vue3 ssr deploy on serverless or tradtional web server

53 lines (52 loc) 1.28 kB
{ "name": "ssr", "version": "7.0.5", "description": "cli for react/vue2/vue3 ssr deploy on serverless or tradtional web server", "main": "./cjs/index.js", "module": "./esm/index.js", "sideEffects": false, "scripts": { "build": "concurrently \"tsc -p ./tsconfig.cjs.json \" \" tsc -p ./tsconfig.esm.json\"", "watch": "concurrently \"tsc -w -p ./tsconfig.cjs.json \" \"tsc -w -p ./tsconfig.esm.json \"" }, "bin": { "ssr": "./cjs/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/zhangyuang/ssr.git" }, "keywords": [ "cli", "serverless", "ssr", "react", "vue" ], "author": "zhangyuang", "license": "MIT", "bugs": { "url": "https://github.com/zhangyuang/ssr/issues" }, "homepage": "https://github.com/zhangyuang/ssr#readme", "dependencies": { "axios": "^1.4.0", "chokidar": "^3.5.3", "esbuild": "0.14.48", "ora": "^4.0.4", "shelljs": "^0.8.3", "ssr-common-utils": "^7.0.0", "ssr-types": "^7.0.0", "yargs": "^13.2.4", "magic-string": "^0.25.7", "es-module-lexer": "^0.9.3" }, "engines": { "node": ">=12" }, "devDependencies": { "@types/shelljs": "^0.8.7", "@types/yargs": "^13.0.0", "concurrently": "^5.1.0" } }