UNPKG

@el3um4s/ipc-for-electron

Version:

A package to simplify the communication between renderer and node js in Electron applications

72 lines (71 loc) 2.04 kB
{ "name": "@el3um4s/ipc-for-electron", "version": "1.0.7", "description": "A package to simplify the communication between renderer and node js in Electron applications", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "tsc", "lint": "eslint . --ext .ts", "test": "jest --config jestconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "git add -A src", "postversion": "git push && git push --tags", "check-updates": "npx npm-check-updates", "check-updates:minor": "npx npm-check-updates --target minor", "check-updates:patch": "npx npm-check-updates --target patch" }, "repository": { "type": "git", "url": "git+https://github.com/el3um4s/ipc-for-electron.git" }, "files": [ "lib/**/*" ], "keywords": [ "typescript", "npm", "electron", "electronjs", "node", "nodejs", "renderer", "ipc", "inter-process communication" ], "author": "Samuele C. De Tomasi", "license": "MIT", "funding": [ { "type": "patreon", "url": "https://www.patreon.com/el3um4s" }, { "type": "individual", "url": "https://www.paypal.me/el3um4s" } ], "bugs": { "url": "https://github.com/el3um4s/ipc-for-electron/issues" }, "homepage": "https://github.com/el3um4s/ipc-for-electron#readme", "devDependencies": { "@types/jest": "^29.0.0", "@types/node": "^18.7.16", "@typescript-eslint/eslint-plugin": "^5.36.2", "@typescript-eslint/parser": "^5.36.2", "ansi-regex": ">=6.0.1", "electron": "^20.1.3", "eslint": "^8.23.0", "eslint-config-prettier": "^8.5.0", "eslint-config-standard": "^17.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.0.1", "jest": "^29.0.3", "ts-jest": "^29.0.0", "typescript": "^4.8.3" } }