Files
smartspawn/package.json
T
2026-05-01 18:49:10 +00:00

66 lines
1.5 KiB
JSON

{
"name": "@push.rocks/smartspawn",
"version": "3.0.4",
"private": false,
"description": "A node module for smart subprocess handling with support for promises and streamlined subprocess communication.",
"exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartspawn.git"
},
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartspawn/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartspawn",
"dependencies": {
"@push.rocks/smartpromise": "^4.2.4",
"spawn-wrap": "^3.0.0",
"threads": "1.7.0",
"tiny-worker": "^2.3.0"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"keywords": [
"subprocess",
"child_process",
"spawn",
"threading",
"multithreading",
"process management",
"async",
"promise"
]
}