scp2-env
Version:
Deploy server using scp2 with environment support
43 lines (42 loc) • 1.12 kB
JSON
{
"name": "scp2-env",
"version": "1.0.5",
"description": "Deploy server using scp2 with environment support",
"main": "dist/main.cjs",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/chengazhen/scp2-env"
},
"keywords": [
"scp2",
"deploy",
"environment",
"support"
],
"bin": {
"scp2-env": "./dist/main.cjs"
},
"scripts": {
"build": "tsup",
"deploy": "cross-env CONSOLA_LEVEL=4 tsx main.ts",
"deploy:dev": "cross-env CONSOLA_LEVEL=4 tsx main.ts --mode development",
"deploy:test": "cross-env CONSOLA_LEVEL=4 tsx main.ts --mode test",
"deploy:staging": "cross-env CONSOLA_LEVEL=4 tsx main.ts --mode staging",
"deploy:prod": "cross-env CONSOLA_LEVEL=4 tsx main.ts --mode production",
"publish": "npm run build && npm publish"
},
"devDependencies": {
"@types/node": "^22.13.9",
"cross-env": "^7.0.3",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"dependencies": {
"consola": "^3.2.3",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"scp2": "^0.5.0"
}
}