{
  "name": "kill-sync",
  "author": "Khiet Tam Nguyen",
  "license": "MIT",
  "description": "Cross-platform kill command. Supports recusive/tree-kill in a synchronous manner.",
  "repository": {
    "type": "git",
    "url": "https://github.com/nktnet1/kill-sync"
  },
  "version": "1.0.4",
  "files": [
    "dist"
  ],
  "keywords": [
    "nodejs",
    "sync",
    "synchronous",
    "process",
    "processes",
    "terminate",
    "kill",
    "kill-sync",
    "tree",
    "trees",
    "taskkill",
    "pid",
    "ps",
    "recursive",
    "tree-kill",
    "tree-kill-sync",
    "signal",
    "comp1531"
  ],
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/express": "^5.0.6",
    "@types/node": "^25.6.2",
    "@vitest/coverage-v8": "4.1.5",
    "eslint": "^10.3.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-prettier": "^5.5.5",
    "express": "^5.2.1",
    "globals": "^17.6.0",
    "slync": "^1.0.2",
    "sync-request-curl": "^4.0.0",
    "ts-node": "^10.9.2",
    "tsdown": "^0.22.0",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.2",
    "vite": "^8.0.11",
    "vitest": "^4.1.5"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "start": "ts-node tests/app/server",
    "test": "vitest run",
    "tc": "vitest run --coverage",
    "lint": "eslint './**/*.ts'",
    "lf": "eslint --fix './**/*.ts'",
    "tsc": "tsc --noEmit",
    "build": "tsdown"
  }
}