smartspawn/package.json
2024-05-29 14:16:25 +02:00

62 lines
1.5 KiB
JSON

{
"name": "@push.rocks/smartspawn",
"version": "3.0.3",
"private": false,
"description": "A node module for smart subprocess handling with support for promises and streamlined subprocess communication.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartspawn.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartipc/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartspawn",
"dependencies": {
"@push.rocks/smartpromise": "^4.0.3",
"spawn-wrap": "^2.0.0",
"threads": "1.7.0",
"tiny-worker": "^2.2.0"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.11",
"@git.zone/tsrun": "^1.2.8",
"@git.zone/tstest": "^1.0.24",
"@push.rocks/tapbundle": "^5.0.4",
"@types/node": "^20.12.12"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"keywords": [
"subprocess",
"child_process",
"spawn",
"threading",
"multithreading",
"process management",
"async",
"promise"
]
}