smartipc/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2019-04-05 18:30:43 +00:00
{
2023-07-10 00:56:29 +00:00
"name": "@push.rocks/smartipc",
2019-04-09 10:35:28 +00:00
"version": "1.0.8",
2019-04-05 18:30:43 +00:00
"private": false,
2024-04-14 15:44:11 +00:00
"description": "A library for node inter process communication, providing an easy-to-use API for IPC.",
2019-04-05 18:30:43 +00:00
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
"format": "(gitzone format)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
2019-04-08 17:42:23 +00:00
"@gitzone/tstest": "^1.0.19",
"@pushrocks/smartspawn": "^2.0.4",
2019-04-05 18:30:43 +00:00
"@pushrocks/tapbundle": "^3.0.7",
2019-04-08 17:42:23 +00:00
"@types/node": "^11.13.0",
2019-04-05 18:30:43 +00:00
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
2019-04-09 10:30:12 +00:00
"@pushrocks/smartdelay": "^2.0.3",
2019-04-08 17:42:23 +00:00
"@pushrocks/smartpromise": "^3.0.2",
"@pushrocks/smartrx": "^2.0.3",
2019-04-05 18:30:43 +00:00
"@types/node-ipc": "^9.1.1",
"node-ipc": "^9.1.1"
2024-04-14 15:44:11 +00:00
},
"keywords": [
"IPC",
"node.js",
"inter-process communication",
"event-driven",
"client-server",
"message passing"
2024-05-29 12:13:44 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartipc",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartipc.git"
}
2023-07-10 00:56:29 +00:00
}