{
  "name": "@binsee/sidecar",
  "version": "1.2.0",
  "description": "Sidecar is for easy hook/call in-process functions with TypeScript annotations.",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/esm/src/mod.js",
      "require": "./dist/cjs/src/mod.js"
    }
  },
  "typings": "./dist/esm/src/mod.d.ts",
  "engines": {
    "node": ">=16",
    "npm": ">=7"
  },
  "bin": {
    "sidecar-dump": "dist/esm/bin/sidecar-dump.js"
  },
  "scripts": {
    "clean": "shx rm -fr dist/*",
    "dist": "npm-run-all clean build dist:commonjs dist:copy",
    "build": "tsc && tsc -p tsconfig.cjs.json",
    "dist:commonjs": "jq -n \"{ type: \\\"commonjs\\\" }\" > dist/cjs/package.json",
    "dist:copy": "npm-run-all copy:esm copy:cjs",
    "copy:esm": "shx cp -R commonjs/ dist/esm/ && shx cp -R src/agent/templates/{libs,*.mustache} dist/esm/src/agent/templates/",
    "copy:cjs": "shx cp -R commonjs/ dist/cjs/ && shx cp -R src/agent/templates/{libs,*.mustache} dist/cjs/src/agent/templates/",
    "lint": "npm-run-all lint:es lint:ts",
    "lint:ts": "tsc --isolatedModules --noEmit",
    "start": "npm run example",
    "example": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm --experimental-vm-modules\" node examples/main.ts",
    "chatbox": "cd examples/chatbox && make",
    "postinstall": "node scripts/post-install.cjs",
    "test": "npm-run-all lint test:unit",
    "test:unit": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm --experimental-vm-modules\" tap \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"",
    "test:unit:debug": "cross-env BROLOG_LEVEL=silly npm run test:unit",
    "test:pack": "bash -x scripts/npm-pack-testing.sh",
    "lint:es": "eslint --ignore-pattern fixtures/ \"src/**/*.ts\" \"tests/**/*.ts\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/binsee/sidecar.git"
  },
  "keywords": [
    "frida",
    "hook"
  ],
  "author": "Huan <zixia@zixia.net>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/huan/sidecar/issues"
  },
  "homepage": "https://github.com/huan/sidecar#readme",
  "devDependencies": {
    "@chatie/eslint-config": "^1.0.4",
    "@chatie/git-scripts": "^0.7.7",
    "@chatie/semver": "^0.4.7",
    "@chatie/tsconfig": "^4.5.3",
    "@types/mustache": "^4.1.2",
    "@types/node": "^16.11.10",
    "@types/string-similarity": "^4.0.0",
    "cross-env": "^7.0.3",
    "frida-compile": "^10.2.5",
    "npm-run-all": "^4.1.5",
    "pkg-jq": "^0.2.11",
    "shx": "^0.3.3",
    "string-similarity": "^4.0.4",
    "tstest": "^1.0.1",
    "typescript": "^4.5.2"
  },
  "dependencies": {
    "@types/frida-gum": "^17.2.0",
    "brolog": "^1.14.2",
    "cmd-ts": "^0.7.0",
    "cross-spawn": "^7.0.3",
    "frida": "^15.1.12",
    "gerror": "^1.0.14",
    "mustache": "^4.2.0",
    "pkg-dir": "5.0.0",
    "reflect-metadata": "^0.1.13",
    "typed-emitter": "^1.5.0-from-event"
  },
  "git": {
    "scripts": {
      "pre-push": "npx git-scripts-pre-push"
    }
  },
  "publishConfig": {
    "tag": "next"
  },
  "files": [
    "dist/",
    "scripts/",
    "src/"
  ],
  "tap": {
    "check-coverage": false
  }
}
