{
  "name": "@superflag/super-ipc-core",
  "version": "0.1.0",
  "description": "A sanely typed convenience wrapper around electron ipc",
  "main": "./build/cjs/index.js",
  "types": "./build/types/index.d.ts",
  "exports": {
    "import": "./build/mjs/index.js",
    "require": "./build/cjs/index.js",
    "types": "./build/types/index.d.ts"
  },
  "files": [
    "build/**",
    "package.json"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/superflag-io/super-ipc.git"
  },
  "keywords": [
    "electron",
    "ipc"
  ],
  "author": "Blake Stacks",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/superflag-io/super-ipc/issues"
  },
  "devDependencies": {
    "typescript": "^5.2.2",
    "@total-typescript/tsconfig": "^1.0.4"
  },
  "scripts": {
    "clean": "rm -rf build",
    "build:es6": "tsc",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:types": "tsc -p tsconfig.types.json",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix"
  }
}