{
  "name": "process-wrapper",
  "version": "1.0.0",
  "description": "Run binaries from node, with easy stdout/stderr manipulation + signal passthrough + exit code propagation.",
  "license": "MIT",
  "author": "Adam Jones (domdomegg)",
  "repository": {
    "type": "git",
    "url": "https://github.com/domdomegg/process-wrapper.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "vitest run",
    "test:watch": "vitest --watch",
    "lint": "eslint --ext .js,.jsx,.ts,.tsx .",
    "clean": "rm -rf dist",
    "build": "tsc --project tsconfig.build.json",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "devDependencies": {
    "@swc/core": "^1.3.40",
    "@tsconfig/node-lts-strictest": "^18.12.1",
    "@types/node": "^18.15.3",
    "eslint": "^8.32.0",
    "eslint-config-domdomegg": "^1.2.0",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.4",
    "vitest": "^0.29.2"
  },
  "eslintConfig": {
    "extends": [
      "eslint-config-domdomegg"
    ]
  }
}
