{
  "name": "@saidulbadhon/jssm-cli",
  "version": "2.0.0",
  "private": false,
  "description": "CLI for JSSM - Simple environment variable manager",
  "author": "Saidul Badhon",
  "license": "MIT",
  "type": "module",
  "bin": {
    "jssm": "./dist/index.cjs"
  },
  "files": [
    "dist",
    "scripts/postinstall.mjs",
    "README.md"
  ],
  "keywords": [
    "env",
    "environment",
    "variables",
    "ssm",
    "aws",
    "secrets",
    "config",
    "cli"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jutsuai/jssm-platfrom.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "JSSM_ENV=development bun src/index.ts",
    "sync-version": "node scripts/sync-version.js",
    "build": "npm run sync-version && rm -f dist/index.js dist/index.cjs && bun build src/index.ts --target node --format cjs --outfile dist/index.cjs && chmod +x dist/index.cjs",
    "build:node": "npm run build",
    "type-check": "tsc --noEmit",
    "postinstall": "node scripts/postinstall.mjs",
    "prepublishOnly": "npm run build",
    "publish": "npm publish --access public"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/node": "^20.10.0",
    "bun-types": "^1.3.4",
    "esbuild": "^0.20.2",
    "typescript": "^5.3.3"
  },
  "dependencies": {
    "@inquirer/prompts": "^8.2.0",
    "ignore": "^7.0.5"
  }
}
