UNPKG

@comapeo/ipc

Version:
87 lines (86 loc) 2.02 kB
{ "name": "@comapeo/ipc", "version": "3.0.0", "description": "IPC wrappers for CoMapeo Core", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "engines": { "node": ">=18.17.1" }, "scripts": { "format": "prettier **/*.{js,md} --write", "lint": "eslint . --cache", "types": "tsc -p tsconfig.json", "test:unit": "node --test tests/*.js", "test": "npm-run-all lint types test:unit", "bench": "node bench/bench.js", "build": "tsc -p tsconfig.npm.json", "prepack": "npm run build", "prepare": "husky install", "release": "standard-version" }, "files": [ "dist" ], "repository": { "type": "git", "url": "git+https://github.com/digidem/comapeo-ipc.git" }, "keywords": [ "mapeo", "ipc" ], "author": { "name": "Andrew Chou" }, "license": "MIT", "bugs": { "url": "https://github.com/digidem/comapeo-ipc/issues" }, "homepage": "https://github.com/digidem/comapeo-ipc#readme", "dependencies": { "eventemitter3": "^5.0.1", "p-defer": "^4.0.0", "rpc-reflector": "^1.3.11" }, "peerDependencies": { "@comapeo/core": "^3.0.0" }, "devDependencies": { "@comapeo/core": "3.0.0", "@digidem/types": "^2.1.0", "@mapeo/crypto": "^1.0.0-alpha.8", "@types/nanobench": "^3.0.0", "@types/node": "^20.7.1", "eslint": "^8.50.0", "fastify": "^4.26.2", "husky": "^8.0.0", "lint-staged": "^14.0.1", "nanobench": "^3.0.0", "npm-run-all": "^4.1.5", "prettier": "^3.0.3", "random-access-memory": "^6.2.0", "standard-version": "^9.5.0", "typescript": "^5.2.2" }, "prettier": { "semi": false, "singleQuote": true }, "eslintConfig": { "env": { "commonjs": true, "es2021": true, "node": true }, "extends": "eslint:recommended", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" } }, "lint-staged": { "*.{js,md}": "prettier . --write" } }