env-sync-tool
Version:
CLI tool to synchronize .env and .env.example files
53 lines (52 loc) • 1.09 kB
JSON
{
"name": "env-sync-tool",
"version": "2.0.0",
"description": "CLI tool to synchronize .env and .env.example files",
"main": "./index.ts",
"bin": "./index",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/flacial/env-sync-tool"
},
"keywords": [
"dotenv",
"env",
"environment",
"sync",
"cli"
],
"author": "Faisal flacial@protonmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/flacial/env-sync-tool"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/yargs": "^17.0.33",
"dotenv": "^16.4.7",
"yargs": "^17.7.2"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"index"
],
"scripts": {
"build:package": "bun build ./ --target node --outdir dist",
"format": "biome format --write .",
"lint": "biome lint --write .",
"compile": "bun build --compile ."
}
}