vercel-env-push
Version:
The missing Vercel CLI command to push environment variables from .env files.
76 lines • 1.81 kB
JSON
{
"name": "vercel-env-push",
"description": "The missing Vercel CLI command to push environment variables from .env files.",
"homepage": "https://github.com/HiDeoo/vercel-env-push",
"version": "0.4.0",
"author": "HiDeoo",
"license": "MIT",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": "./cli.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"cac": "6.7.12",
"cli-table3": "0.6.2",
"dotenv": "16.0.1",
"dotenv-expand": "8.0.3",
"kolorist": "1.5.1",
"nanospinner": "1.1.0",
"wyt": "2.0.1"
},
"devDependencies": {
"@hideoo/eslint-config": "0.0.5",
"@hideoo/prettier-config": "0.0.1",
"@types/node": "14.18.21",
"eslint": "8.18.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"typescript": "4.7.4",
"unbuild": "0.7.4",
"vitest": "0.17.0"
},
"files": [
"cli.mjs",
"dist"
],
"packageManager": "pnpm@7.4.0",
"sideEffects": false,
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"cli",
"environment-variables",
"env",
"push",
"vercel",
"env-file"
],
"bugs": {
"url": "https://github.com/HiDeoo/vercel-env-push/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HiDeoo/vercel-env-push"
},
"prettier": "@hideoo/prettier-config",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown --cache",
"**/*.ts": "eslint --max-warnings=0"
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"lint": "prettier -c . && eslint . --max-warnings=0 && tsc --noEmit"
}
}