@on-the-ground/daemonizer
Version:
A minimal async control flow framework for browser and Node.js daemons.
58 lines (57 loc) • 1.43 kB
JSON
{
"name": "@on-the-ground/daemonizer",
"version": "0.1.0",
"description": "A minimal async control flow framework for browser and Node.js daemons.",
"keywords": [
"daemon",
"actor",
"async",
"event-loop",
"task-group",
"browser",
"nodejs"
],
"author": "Joohyung Park <joohyung-park@on-the-ground.org>",
"license": "MIT",
"files": [
"dist/index.mjs",
"dist/index.cjs",
"dist/index.d.ts"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist",
"test": "jest",
"prepublishOnly": "yarn build && yarn test"
},
"dependencies": {
"nanoid": "3.3.4",
"tslib": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"rollup": "^4.46.0",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/on-the-ground/daemonizer.git"
},
"bugs": {
"url": "https://github.com/on-the-ground/daemonizer/issues"
}
}