Files
smartipc/package.json

65 lines
1.6 KiB
JSON
Raw Normal View History

2019-04-05 20:30:43 +02:00
{
2023-07-10 02:56:29 +02:00
"name": "@push.rocks/smartipc",
2025-08-29 08:49:04 +00:00
"version": "2.2.1",
2019-04-05 20:30:43 +02:00
"private": false,
2024-04-14 17:44:11 +02:00
"description": "A library for node inter process communication, providing an easy-to-use API for IPC.",
"exports": {
".": "./dist_ts/index.js"
},
2019-04-05 20:30:43 +02:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2025-08-23 11:29:22 +00:00
"test": "(tstest test/ --verbose --logfile --timeout 60)",
2019-04-05 20:30:43 +02:00
"build": "(tsbuild)",
2025-08-23 11:29:22 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2019-04-05 20:30:43 +02:00
},
"devDependencies": {
2025-08-23 11:29:22 +00:00
"@git.zone/tsbuild": "^2.0.22",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.3.5",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartspawn": "^3.0.2",
"@types/node": "^22.13.8"
2019-04-05 20:30:43 +02:00
},
"dependencies": {
2025-08-23 11:29:22 +00:00
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/smartrx": "^3.0.10",
2019-04-05 20:30:43 +02:00
"@types/node-ipc": "^9.1.1",
2025-08-23 11:29:22 +00:00
"node-ipc": "^12.0.0"
2024-04-14 17:44:11 +02:00
},
"keywords": [
"IPC",
"node.js",
"inter-process communication",
"event-driven",
"client-server",
"message passing"
2024-05-29 14:13:44 +02:00
],
2025-08-23 11:29:22 +00:00
"homepage": "https://code.foss.global/push.rocks/smartipc#readme",
2024-05-29 14:13:44 +02:00
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartipc.git"
2025-08-23 11:29:22 +00:00
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartipc/issues"
},
"type": "module",
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"pnpm": {
"overrides": {}
2024-05-29 14:13:44 +02:00
}
2025-08-23 11:29:22 +00:00
}