{
  "name": "@tolgamorf/env2op-cli",
  "version": "0.2.8",
  "description": "Convert .env files to 1Password Secure Notes and generate templates for op inject/run",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "bin": {
    "env2op": "dist/cli.js",
    "op2env": "dist/op2env-cli.js"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "dev": "bun run src/cli.ts",
    "build": "bunup",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "test:coverage": "bun test --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "bunx biome check .",
    "lint:fix": "bunx biome check . --write",
    "format": "bunx biome format --write .",
    "format:check": "bunx biome format .",
    "prepublishOnly": "bun run build",
    "release": "bun run scripts/release.ts",
    "build:windows": "bun build --compile --target=bun-windows-x64 src/cli.ts --outfile dist/env2op.exe && bun build --compile --target=bun-windows-x64 src/op2env-cli.ts --outfile dist/op2env.exe"
  },
  "keywords": [
    "env",
    "1password",
    "op",
    "cli",
    "secrets",
    "environment-variables",
    "dotenv",
    "secure-notes",
    "bun",
    "op-inject",
    "op-run",
    "template"
  ],
  "author": {
    "name": "Tolga O.",
    "url": "https://github.com/tolgamorf"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tolgamorf/env2op-cli.git"
  },
  "bugs": {
    "url": "https://github.com/tolgamorf/env2op-cli/issues"
  },
  "homepage": "https://github.com/tolgamorf/env2op-cli#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@clack/prompts": "^0.11.0",
    "picocolors": "^1.1.1"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.11",
    "@tsconfig/bun": "^1.0.10",
    "@types/bun": "^1.3.11",
    "bunup": "^0.16.31",
    "typescript": "^5.9.3"
  }
}
